我正在使用 Builtby will FlipBook。
HTML
<div id="mybook">
<div title="This is a page title">
<h3>Yay, Page 1!</h3>
</div>
<div>
<h3>Yay, Page 2!</h3>
</div>
<div title="This is another title">
<h3>Yay, Page 3!</h3>
</div>
<div>
<h3>Yay, Page 4!</h3>
</div>
<div title="Hooray for titles!">
<h3>Yay, Page 5!</h3>
</div>
<div>
<h3>Yay, Page 6!</h3>
</div>
</div>
jQuery
$(function() {
$('#mybook').booklet({
menu: '#custom-menu',
pageSelector: true
});
});
演示在这里: http ://builtbywill.com/code/booklet/demos/pageselect
现在我想更改页面选择器的默认行为。我们在悬停时获得了页面选项。我想将其更改为单击功能。当我单击页面选择器时,它应该显示菜单。当我再次单击它时,它应该隐藏页面选择器..谢谢。