0

我想在一些图像上创建一个书本风格的翻页效果,所以我决定使用 JQuery 插件 JFlip。除了显示图像之外,该插件似乎正在做它应该做的事情。我已经检查了网络选项卡,并且正在加载图像。此外,我可以看到 JFlip 创建的 Canvas 元素,但它只是一个空白区域。

我有一些代码:

<ul id="g1">
    <li>
      <img src="img/proforma.jpg">
    </li>
    <li>
      <img src="img/proforma2.jpg">
    </li>
  </ul>

还有一些javascript:

<script src="http://code.jquery.com/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.jFlip.js"></script>
<script type="text/javascript">

$("#g1").jFlip(700,230,{background:"green",cornersTop:false});


</script>
4

2 回答 2

0

原来该脚本太旧了(2008 年),您需要包含 jQuery 迁移脚本。

JSFiddle

脚本

<script src="http://code.jquery.com/jquery.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.1.0.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.jFlip.js"></script>

HTML

<ul id="g1">
    <li>
        <img src="http://placehold.it/300x300"/>
    </li>
    <li>
        <img src="http://placehold.it/300x300" />
    </li>
</ul>

还要确保将您的执行代码包装在一个document.ready中,以便图像得到要呈现的更改。

JS

<script>
$(document).ready(function() {
    $("#g1").jFlip(700,230,{background:"green",cornersTop:false});
});
</script>
于 2013-08-14T20:32:12.897 回答
0

它确实有效,只是插件有点旧。请参阅下面的代码:

HTML:

<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://twitter.github.io/bootstrap/assets/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
<script src="http://twitter.github.io/bootstrap/assets/js/bootstrap.js"></script>
  <!--[if IE]><script type="text/javascript" src="http://www.jquery.info/scripts/jFlip/excanvasX.js"></script><![endif]-->

  <script src="http://www.jquery.info/scripts/jFlip/jquery.jflip-0.3.js"></script>
  <script src="http://code.jquery.com/jquery-migrate-1.1.0.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <ul id="g1">
    <li>
      <img src="http://keith-wood.name/img/calendar.gif">
    </li>
    <li>
      <img src="http://keith-wood.name/img/calendar.gif">
    </li>
  </ul>
</body>
</html>

JS:

$("#g1").jFlip(700,230,{background:"green",cornersTop:false});

在此处查看完整的解决方案:http: //jsbin.com/iqaran/1/edit。记得run with js在 jsbin

干杯!

于 2013-08-14T20:51:14.700 回答