我正在使用turn.js,但是我收到错误 TypeError:$(...)。turn不是函数目前我的js是:
function loadApp() {
// Create the flipbook
$('.flipbook').turn({
// Width
width:922,
// Height
height:600,
// Elevation
elevation: 50,
// Enable gradients
gradients: true,
// Auto center this flipbook
autoCenter: true
});
}
// Load the HTML4 version if there's not CSS transform
$(document).ready(function() {
yepnope({
test : Modernizr.csstransforms,
yep: ['../../lib/turn.js'],
nope: ['../../lib/turn.html4.min.js'],
both: ['css/basic.css'],
complete: loadApp
});
});
我可能出错的任何想法?
答案 0 :(得分:1)
难以给出一个答案,因为这里有许多可能是错误的事情。 但是,我认为问题应该是jQuery或turn.js没有正确加载。
所以,我建议首先打开您选择的浏览器的开发人员工具,并检查jQuery和turn.js是否确实被加载到页面中。此外,jQuery必须在turn.js之前才能使turn.js正常工作。