如何淡化循环背景图像? [英] How to fade loop background images?

查看:31
本文介绍了如何淡化循环背景图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这里的菜鸟..我试图让我的静态背景变成一个旋转木马..我目前的 html 看起来像这样:

<div class="pageContent">

和我的 CSS:

body {背景:url('http://placehold.it/1600x1200') 无重复中心固定;-webkit-background-size: 封面;-moz-background-size: 封面;-o-背景尺寸:封面;背景尺寸:封面;}

所以我想让背景现在循环图像并保持响应......使用CSS3可以轻松完成吗?或者我应该用引导程序将我的 html 的内容包装在一个轮播中吗?我无法找到一个很好的例子来说明如何做到这一点.提前致谢.

解决方案

Rookie here .. I'm trying to make my static background become a carousel.. my current html looks something like this:

<body>
    <div class="pageContent">
    </div>
</body>

and my CSS:

body {
    background: url('http://placehold.it/1600x1200') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

So I'd like to make the background now cycle images and stay responsive .. Can this be done easily using CSS3? or should I maybe wrap the contents of my html in a carousel with bootstrap? I wasn't able to find a good example of how to do this. Thanks in advance.

解决方案

jsBin demo

I would do it using an absolute positioned DIV overlaying the body. Fade in the DIV with a new image, then set the same image to body and hide the DIV like: (GRAY is BODY, SOrange is DIV)

The increment of the current image Array is achieved by preincrementing ++counter.

The loop fix is than achieved using Remainder Operator% to prevent the counter from exceeding the number of images in Array.

The loop itself is done inside .fadeTo() callback function by simply do a new iteration of the loopBg() function.

This is the needed CSS:

*{margin:0;padding:0;} /* Global reset */
html, body{height:100%;width:100%;}
body, #bg{ background: #000 none 50% / cover; }
#bg{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  width:100%;
  height:100%;
}

And the jQ:

var images = [
  "bg0.jpg",
  "bg1.jpg",
  "bg2.jpg"
];
var $body = $("body"),
    $bg = $("#bg"),
    n = images.length,
    c = 0; // Loop Counter

// Preload Array of images...
for(var i=0; i<n; i++){
  var tImg = new Image();
  tImg.src = images[i];
}

$body.css({backgroundImage : "url("+images[c]+")"}); 

(function loopBg(){
  $bg.hide().css({backgroundImage : "url("+images[++c%n]+")"}).delay(2000).fadeTo(1200, 1, function(){
    $body.css({backgroundImage : "url("+images[c%n]+")"}); 
    loopBg();
  });
}());

Edit: If you want to keep the background changing but make the content scrollable, simply add overflow:auto; to #page like in this demo: http://jsbin.com/huzayiruti/1/

这篇关于如何淡化循环背景图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆