jquery – 随机背景图像CSS3

前端之家收集整理的这篇文章主要介绍了jquery – 随机背景图像CSS3前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在做一个小网站,但是我喜欢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)] + ')'});
原文链接:https://www.f2er.com/jquery/180401.html

猜你在找的jQuery相关文章