0

我正在使用turn.js,但是我收到错误TypeError: $(...).turn is not a function目前我的 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
   });
});

有什么想法我可能会出错吗?

4

1 回答 1

1

很难只给出一个答案,因为这里有很多可能是错误的。但是,我认为问题应该是没有正确加载 jQuery 或 turn.js。

所以,我建议,首先,您打开您选择的浏览器的开发者工具并检查 jQuery 和 turn.js 是否确实被加载到页面中。jQuery 必须在 turn.js 之前,以便 turn.js 正常工作。

于 2014-01-24T12:59:16.633 回答