我如何在响应中包含第三方库(turn.js)

时间:2018-11-14 14:04:42

标签: javascript reactjs webpack page-flipping turn.js

现在,我需要在react中进行页面翻转动画。我看到了用于页面翻转的turn.js库。我将其导入了react组件中。它没有在该库中调用jQuery函数(.turn)

导入声明

 import React from 'react';
import $ from 'jquery'
import 'turn.js/index.js'

Oncomponent确实安装了方法:

componentDidMount(){
    $("#flipbook").turn({
        width: 400,
        height: 300,
        autoCenter: true
    });
}

渲染时:

 <div>
            <div ref="flipbook">
                <div className="hard"> Turn.js </div>
                <div className="hard"></div>
                <div> Page 1 </div>
                <div> Page 2 </div>
                <div> Page 3 </div>
                <div> Page 4 </div>
                <div className="hard"></div>
                <div className="hard"></div>
            </div>
        </div>

浏览器控制台中的错误:

Turn.js?36f0:16 Uncaught TypeError: jquery__WEBPACK_IMPORTED_MODULE_1___default(...)(...).turn is not a function

1 个答案:

答案 0 :(得分:1)

为什么不使用react-flip-page。它既好又响应。

使用npm安装它:

npm install --save react-flip-page

然后,您可以将FlipPage用作组件。就是这样:

<FlipPage>
  <article>
    <h1>My awesome first article</h1>
    <p>My awesome first content</p>
  </article>
  <article>
    <h1>My wonderful second article</h1>
    <p>My wonderful second content</p>
  </article>
  <article>
    <h1>My excellent third article</h1>
    <p>My excellent third content</p>
  </article>
</FlipPage>

Here is the reference link