0
A
回答
0
爲例
CSS
.imageToAppear{display:none;opacity:0}
HTML
<div id="wantedonscroll"></div>
<div id="imageToAppear"><img src="/01.png"></div>
JQUERY
$("#wantedonscroll").scroll(function() {
$("#imageToAppear").fadeIn();
});
可以costumize淡入事件這裏是文檔Jquery Fadein
0
感謝您的回答:)
,但它只是沒有在我的html頁面工作...
這是我的文件:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>test</title>
<style type="text/css">
#imageToAppear{display:none;opacity:0}
</style>
</head>
<body>
<div>
<p>Lorem ispum .... and a lot of things in order to have something to scroll</p>
</div>
<div id="wantedonscroll"></div>
<div id="imageToAppear"><img src="test.png"></div>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$("#wantedonscroll").scroll(function() {
$("#imageToAppear").fadeIn();
});
</script>
</body>
</html>
什麼是錯的?
相關問題
- 1. 當用戶向下滾動時,如何讓「出現」出現?
- 2. 當用戶滾動時,如何保持div /圖像不滾動?
- 3. 當用戶滾動頁面時移動圖像(使用jQuery)?
- 4. 當用戶滾動時移動圖像或元素
- 5. 當他們滾動時動畫圖像
- 6. 滾動視圖與滾動視圖裏面,當軟鍵盤出現時,父滾動視圖不滾動
- 7. 當用戶滾動到div時,JQuery加載並淡入圖像
- 8. 當用戶向下滾動頁面時加載圖像 -
- 9. 當pickerview出現時向上滾動scrollview
- 10. 當燈箱出現時阻止滾動
- 11. 當div出現jquery時滾動頁面
- 12. Swift:當出現鍵盤時滾動UITableView
- 13. 當滾動條出現時,Flash動態圖像在IE瀏覽器上消失
- 14. 當用戶向下滾動到該div時,在背景圖像中淡出
- 15. Divs隨時出現用戶滾動 - 不在視圖
- 16. 水平滾動只出現在iphone當base64圖像添加
- 17. 如何在用戶向下滾動頁面時減少出現下一組圖像時出現的空白量?
- 18. 當用戶觸摸圖像時出現文字
- 19. 當頁面滾動時旋轉圖像
- 20. 當滾動時更改背景圖像
- 21. 當鍵盤出現時,滾動查看不會滾動
- 22. 當我使用jQueryMobile,滾動已出現
- 23. 當div溢出時滾動帶有內容的背景圖像
- 24. 滾動圖像列表時出現OutOfMemory異常
- 25. Blackberry - 滾動屏幕時出現背景圖像
- 26. 從documentDirectory載入圖像到UICollectionView - 滾動時出現滯後
- 27. jQuery的發現,當用戶滾動出一個元素
- 28. 滾動時移動圖像
- 29. 滾動時移動圖像
- 30. 當用戶手動滾動時,如何防止自動滾動?
嘗試:http://johnpolacek.github.io/scrollorama/ – myajouri
搜索「延遲加載」。 –