Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DIV の background-image にタイムスパンを割り当てることは可能ですか?
jQueryでできるかどうか知っていますか?最初の画像を 20 秒間、2 番目の画像を 5 秒間維持したい。だから彼らはお互いを変えるべきです。
ドキュメントの準備でこのようなものを使用してください...
setTimeout("ChangeToBlue();", 20000);
それから...機能...
function ChangeToBlue() { $("#background").css("background-color", "blue"); }
背景を色に設定していますが、同じ考えです。前後に切り替えたい場合は、関数で別のタイムアウトを設定します。
このhttp://jsfiddle.net/cwsUF/1/のようにfadeToggleを使用できます