繁体   English   中英

带有jquery fancybox和iframe的幻灯片

[英]slideshow with jquery fancybox and iframe

我正在尝试查看是否可以创建类似于flipboard.com登陆页面的html页面的幻灯片显示。

我可以在fancybox中使用iframe加载html页面。

该页面位于:http: //yshara.com/test.html

我的html / javascript看起来像:

<body onload="$('.extLink').trigger('click');"> 
  <div class="container">   
    <div id="nextslide">
  <a class="extLink" href="http://google.com">Search the world with different sites.</a>    
      <a class="extLink"  href="http://yahoo.com">Next</a>
      <a class="extLink" href="http://Bing.com">Next</a>        
</div>      
  </div>
</body>

我想知道是否有任何JavaScript专家可以帮助我解决这一问题。

  1. 第一页是google.com,但它跳到了下一页yahoo.com。
  2. 如何循环回到首页?

在此先感谢您的帮助。

您不应该触发.extLink类,因为它会触发3次。 尝试$('.extLink:eq(0)').click()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM