我在phonegap上构建它并在bluestack上安装它的.apk后,我的翻转动画不起作用,谁能告诉我有什么问题?
索引.html:
<!doctype html>
<head>
<title>The page flip effect in HTML5</title>
<script type="text/javascript" src="js/turn.min.js"></script>
<script type="text/javascript" src="js/cordova.js"></script>
</head>
<body>
<center>
<div id="flipbook">
<div style="background:#ff0000;" class="hard"> Turn.js </div>
<div style="background:#0000FF;" class="hard"></div>
<div style="background:#ff0000;"> Page 1 </div>
<div style="background:#0000FF;"> Page 2 </div>
<div style="background:#ff0000;"> Page 3 </div>
<div style="background:#0000FF;"> Page 4 </div>
<div style="background:#ff0000;" class="hard"></div>
<div style="background:#0000FF;" class="hard"></div>
</div>
<script type="text/javascript">
$("#flipbook").turn({
width: 600,
height: '100%',
autoCenter: true
});
</script>
</body>
</html>