1

Web ページにスクロールする iframe ビデオ セクションがあります。問題は、スクロールで iframe が読み込まれるたびにページが更新されることです。このサイトのスクローラーを使用しましたhttp://www.smoothdivscroll.com/index.html#toc。iframeの読み込み中にページの更新を避けるには?

HTML:

<div id="logoParade">
  <div class="scrollWrapper">
    <div class="scrollableArea">
      <div class="product-box" id="test">
        <iframe width="700" height="500" src="http://www.youtube.com/embed/QTKM-54zWm4" frameborder="0" allowfullscreen></iframe>
      </div>
      <div class="product-box" id="test">
        <iframe width="700" height="500" src="http://www.youtube.com/embed/QTKM-54zWm4" frameborder="0" allowfullscreen></iframe>
      </div>
      <div class="product-box" id="test">
        <iframe width="700" height="500" src="http://www.youtube.com/embed/QTKM-54zWm4" frameborder="0" allowfullscreen></iframe>
      </div>
      <div class="product-box" id="test">
        <iframe width="700" height="500" src="http://www.youtube.com/embed/QTKM-54zWm4" frameborder="0" allowfullscreen></iframe>
      </div>
      <div class="product-box" id="test">
        <iframe width="700" height="500" src="http://www.youtube.com/embed/QTKM-54zWm4" frameborder="0" allowfullscreen></iframe>
      </div>
    </div>
  </div>
</div>
4

1 に答える 1

0

少なくとも私が知っていることではありません。あなたの HTML に見られる唯一の問題は、同様の ID 属性 (「テスト」) であり、更新とは関係がなく、修正する必要があります。

プラグインを使用してコードをテストしましたが、正常に動作します。

于 2012-12-31T14:02:23.133 に答える