源于生活

标题: 随机切换背景图片的代码 [打印本页]

作者: vingoo    时间: 2016-6-16 21:55
标题: 随机切换背景图片的代码
[AppleScript] 纯文本查看 复制代码
<style>
.suiji{background-image:url("");
min-height:200px; background-repeat:no-repeat; background-position:right bottom; width:100%;
}
</style>
<script type="text/javascript">
     $(document).ready(function(){
         var random_bg=Math.floor(Math.random()*3+1);
         var bg='url(/view/img/shuiji_'+random_bg+'.png)';
         $(".suiji").css("background-image",bg);
});
</script>






欢迎光临 源于生活 (http://bbs.vingoo.info/) Powered by Discuz! X3.1