2011-07-26 69 views
1

我想使用jqtouch動畫效果。我的場景是假設我有兩個名爲first.html和second.html的html頁面。 First.html有一個引用second.html的錨標記。 second.html也有一個引用first.html的錨標記。有了這個href,我也傳遞了查詢參數。我想在這些頁面之間有動畫效果。JQTOUCH動畫效果不能在單獨的頁面上工作

我無法給出使用jqtouch的效果,因爲示例應用程序在同一頁面本身顯示效果。請提供一些關於此效果的幫助。我應該在腳本中做出什麼樣的改變並提供示例代碼。

謝謝

回答

2

您是否嘗試過通過addydmasi上JQTouch Animations Wiki提供的建議嗎?粘貼相關評論以便參考:

To those who want to animate between two separate web pages, try this in your <body>: 

<div id="main"><ul><li><a href="#page1" class="slide">Go to another page</a></li></ul></div> 
<div id="page1"><iframe src="http://google.com">Error</iframe></div> 
Replace the src with the file name of the second page and also "page1" with any other name. Then add this to your <head>: 

<style type="text/css">div>iframe{width:100%;height:100%;margin:0;padding:0;border-width:0;}</style> 

讓我們知道這是否工作。

+0

嘿感謝您的答案,我已經嘗試了很多方法,但iframe是剩餘的,所以我會給這一個嘗試。 –

相關問題