如何调整turnjs的活动簿大小? ,我使用史蒂夫·乔布斯的样本。
我尝试
$("#flipbook").turn("size", 800, 1000);
CSS:
#flipbook {
width:800px;
height:1000px
}
但不起作用
谢谢你的帮助 !
最佳答案
编写如下脚本:
<script type="text/javascript">
$("#flipbook").turn({
width: 800,
height: 1000,
autoCenter: true
});
关于javascript - 如何调整turnjs史蒂夫·乔布斯样本的事件簿?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37495308/