我的网页中有一个滚动的 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>