我正在做一个小网站,但是我喜欢5-6张图片作为我的背景,而且每次刷新页面时我想让它随机.这是我在style.css中得到的:
html { background: url(image/l2.jpg) no-repeat center center fixed -webkit-background-size: cover -moz-background-size: cover -o-background-size: cover background-size: cover }
解决方法
你不能只使用html&为此目的的css.你应该做客户端(如javascript)或服务器端(如PHP脚本)
这是PHP的例子:
<?PHP $bg = array('bg-01.jpg','bg-02.jpg','bg-03.jpg','bg-04.jpg','bg-05.jpg','bg-06.jpg','bg-07.jpg' ); // array of filenames $i = rand(0,count($bg)-1); // generate random number size of the array $selectedBg = "$bg[$i]"; // set variable equal to which random filename was chosen ?> <style type="text/css"> <!-- body{ background: url(images/<?PHP echo $selectedBg; ?>) no-repeat; } --> </style>
这是jquery示例:
var images = ['image1.jpg','image2.jpg','image3.jpg','image4.jpg','image5.jpg']; $('html').css({'background-image': 'url(images/' + images[Math.floor(Math.random() * images.length)] + ')'});