我正在做一个小网站,但是我喜欢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
}
答案 0 :(得分:11)
你不能只使用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)] + ')'});
答案 1 :(得分:8)
我会用JS。看一下这个例子:
<html>
<head>
<script type="text/javascript">
var totalCount = 8;
function ChangeIt()
{
var num = Math.ceil( Math.random() * totalCount );
document.body.background = 'bgimages/'+num+'.jpg';
document.body.style.backgroundRepeat = "repeat";// Background repeat
}
</script>
</head>
<body>
// Page Design
</body>
<script type="text/javascript">
ChangeIt();
</script>
</html>
您需要通过随机计数为图像命名正确的数字,并将它们放在图像文件夹中。
答案 2 :(得分:6)
对于jQuery:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var bgArray = ['bg1.jpg', 'bg2.jpg', 'bg3.jpg'];
var bg = bgArray[Math.floor(Math.random() * bgArray.length)];
$('body').css('background', bg);
// If you have defined a path for the images
var path = 'images/bg/';
// then you can put it right before the variable 'bg'
$('body').css('background', path+bg);
});
</script>
答案 3 :(得分:1)
真的很短的选项:(如果你可以在页面中使用php)。将背景的网址替换为单引号的文件名。
background: url('<?php $a = array('darkred.jpg','red.gif','pink.png'); echo $a[array_rand($a)];?>');
答案 4 :(得分:0)
使用纯CSS无法做到这一点。您必须使用javascript随机设置您网站的背景图片。
答案 5 :(得分:0)
嗯,最后一个答案非常简短,但如果将它们放在一个文件夹中怎么办?
<?php
$pt = 'BGs/'; //folder where you put your BGs
$bg = array($pt.'bg_ants.png', $pt.'bg_boobs.png', $pt.'bg_circles.png' ); // array of filenames
?>
<Body background="<?php echo $bg[array_rand($bg)]; ?>">
您可以将其保存在一个文件中,并将其包含在其他页面中使用该代码。
例如:您将其另存为“rand.htm”。只需使用此代码替换<body>
标记。
<?php include("rand.htm"); ?>