我正在学习视差效果,我正试图在背景中显示视频而不是图像。
所以,我使用背景图像创造了一个很好的效果。
这是我的 jQuery 代码:
$('[data-parallax]').each(function(){
var $this = $(this),
$window = $(window);
$window.scroll(function() {
var y = -($window.scrollTop() / $this.data('speed')),
background = '50% '+ y + 'px';
$this.css('background-position', background);
});
});
我的 CSS :
[data-parallax] {
background-attachment: fixed;
background-color: #fff;
background-image: url('http://lorempixel.com/720/480');
background-position: 50% 0;
background-repeat: no-repeat;
background-size: cover;
min-height: 100%;
position: relative;
}
示例: http://jsfiddle.net/7a2ky/show/
代码: http://jsfiddle.net/7a2ky/
我想使用视频(http://goo.gl/HcH2cL)而不是图像来做同样的效果。有可能吗?
答案 0 :(得分:1)
您无法将背景图像更改为CSS中的视频, 你需要使用zIndex欺骗浏览器(或使用gif文件而不是视频):
$video.css({"height":"100%",
position:'absolute',
top:0,left:0,zIndex:10
});
答案 1 :(得分:0)
js
$(window).scroll(function ()
{
var yPos=-($(window).scrollTop() / 6);
if($(window).scrollTop()>100)
{
document.getElementById("div1_wrapper").style.backgroundPosition="100% "+yPos+"px";
}
if($(window).scrollTop()<100)
{
document.getElementById("div1_wrapper").style.backgroundPosition="100% 100%";
}
});
CSS
#div1_wrapper
{
background:url("images/parallax1.jpg") no-repeat;
background-attachment:fixed;
background-size: 100% 100%;
background-repeat: no-repeat;
width:100%;
}
#div2_wrapper
{
background:url("images/parallax2.jpg") no-repeat;
background-attachment:fixed;
background-size: 100% 100%;
background-repeat: no-repeat;
width:100%;
}
如果您需要使用演示http://talkerscode.com/webtricks/simple-parallax-effect-on-scrolling-using-jquery-and-css.php
查看完整教程