簡體   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