-6
Q
動畫文本着陸頁
A
回答
3
是的,有:)
var messages = ["Be", "Up to Speed", "Up to", "Up"],
counter = 0,
target = document.getElementById("message");
setInterval(function(){
target.innerHTML = messages[counter];
counter++;
if(counter >= messages.length) {
counter = 0;
}
}, 300);
body {
font: bold 1em sans-serif;
}
#message {
box-shadow: .125em 0 0 0 rgba(128,128,128,.3);
color: MediumAquamarine;
padding-right: .125em;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<h1>You too can... <span id="message"></span></h1>
相關問題
- 1. 優化着陸頁
- 2. 着陸頁網址
- 3. 着陸頁的NodeJS
- 4. 變體着陸頁
- 5. 動態路由在Rails的着陸頁
- 6. 在着陸頁上滾動(ASP.NET MVC)
- 7. 靈活的主着陸頁
- 8. dynamics ax 2009着陸頁
- 9. FB扇門着陸頁
- 10. Drupal中的着陸頁
- 11. 着陸器的遊戲,不着陸在着陸墊上,但通過
- 12. 着陸頁默認URL參數
- 13. 如何在我的着陸頁
- 14. 當着陸頁滿載時檢測
- 15. 使用Cookie跳過着陸頁
- 16. Octopress的自定義着陸頁
- 17. 重新啓用DotNetNuke中的着陸頁
- 18. PHP的着陸下載頁面
- 19. 的Rails 3.2 force_ssl除了着陸頁
- 20. 與MVC 4不同的着陸頁面
- 21. 多個主題和着陸頁
- 22. FlowRouter默認重定向到着陸頁
- 23. 谷歌Analytics(分析) - 由着陸頁
- 24. Magento的着陸支付頁面(的redirectUrl)
- 25. 着陸頁上僅有多個部分
- 26. Dropbox如何創建着陸頁?
- 27. 無法使管理着陸頁工作
- 28. 着陸頁上的彈出式窗口
- 29. iPad視網膜着陸頁大小 - 2MB
- 30. 在React中選擇着陸頁
也許是的,或與Jquery – Alexis
此鏈接將幫助你http://codepen.io/hi-im-si/pen/DHoup –