my flip animation is not working after I build it on phonegap and install its .apk on bluestack, can anyone tell me what's the problem?
index.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>