基本上我看到了这个页面THIS PAGE,如果你上下滚动,你可以看到一杯饮料变得饱满而且空着,取决于滚动条的位置。知道怎么做的吗?
答案 0 :(得分:2)
实际上是一张背景位置发生变化的图像。在您最初看到玻璃时,图像会完全加载。
http://www.smokeybones.com/static/img/tv/beer_sprite_lrg.jpg?e3e4e50f54ea
答案 1 :(得分:2)
做这样的事情非常复杂但不是特别难。
首先,您需要使用jQuery之类的东西来管理它。你已经那么好了......
下面的html是一个假设用户有图像的工作示例:
它是700 x 100.代码非常简单。围绕窗口的scrollTop()值,并根据结果计算右边框偏移量。无需完全解释,下面的代码说明了一切。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Test</title>
<meta name="viewport" content="width=device-width">
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
</head>
<style>
#main{position:relative;}
.dummy{height:500px;}
#glass{
height:200px;
width:100px;
background:url(http://www.hep-g.com/glass.jpg) no-repeat;
background-position:0 0;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
var frame = 0;
$(window).scroll(function(){
if($(window).scrollTop() % 100 < 10)
frame = Math.floor($(window).scrollTop() / 100) * 100;
if(frame > 700)
frame = 700;
$('#glass').css('background-position', '-' + frame + 'px 0');
});
});
</script>
<body>
<div id="main">
<section class="dummy">
This is dummy content
</section>
<section id="glass"></section>
<section class="dummy">
This is dummy content
</section>
<section class="dummy">
This is dummy content
</section>
</div>
</body>
</html>