ねむすぎノート
トップ
メニュー
一覧
検索
blog/random_image
をテンプレートにして作成
開始行:
#title(背景画像をランダムに変える)
このブログでも過去にrotate.phpを使っていました。jQueryで...
** jQuery版 [#w439cb6a]
- [[jQuery で画像をランダムに出力する方法:http://www.weba...
#code_x{{
<script src="./jquery.min.js"></script>
<script>
$(function() {
var array = [
"images/01.jpg",
"images/02.jpg",
"images/03.jpg"
];
var l = array.length;
var r = Math.floor(Math.random()*l);
var bgimgurl = array[r];
$("body").css('background-image',('url("'+bgimgurl+'")'));
});
</script>
}}
** php版 [#r12dfda5]
- [[Random Image Rotation:http://alistapart.com/article/r...
- [[Random Image Rotationを使って簡単に背景画像をランダム...
#code_x{{
body {
background-image: url(rotator.php);
}
}}
#include(parts/feedback,notitle)
終了行:
#title(背景画像をランダムに変える)
このブログでも過去にrotate.phpを使っていました。jQueryで...
** jQuery版 [#w439cb6a]
- [[jQuery で画像をランダムに出力する方法:http://www.weba...
#code_x{{
<script src="./jquery.min.js"></script>
<script>
$(function() {
var array = [
"images/01.jpg",
"images/02.jpg",
"images/03.jpg"
];
var l = array.length;
var r = Math.floor(Math.random()*l);
var bgimgurl = array[r];
$("body").css('background-image',('url("'+bgimgurl+'")'));
});
</script>
}}
** php版 [#r12dfda5]
- [[Random Image Rotation:http://alistapart.com/article/r...
- [[Random Image Rotationを使って簡単に背景画像をランダム...
#code_x{{
body {
background-image: url(rotator.php);
}
}}
#include(parts/feedback,notitle)
ページ名:
トップ
新規
一覧
検索
最終更新
RSS