我试图通过jquery动画移动分区的背景图像,但它没有移动。图像只是在我试图移动时抖动。 我想创建一个幻灯片,并希望背景图像移动,让我们说点击,我希望背景图像占据整个分区然后点击它应该保持其大小并向右或向左移动。请检查这里的代码 http://jsfiddle.net/sSYKD/1/
<!DOCTYPE html>
<html>
<head>
<script src="jquery-1.8.js"></script>
<style>
.blueScreen {
background:url(http://s21.postimg.org/quy8jsc0n/blue_Screen.png);
background-size:100% 100%;
width:100%;
height:500px;
}
.contentBlueScreen {
display:inline-block;
color:white;
background:url(http://i.imgur.com/a5m0HGp.png);
background-size:100% 100%;
width:100%;
height:500px;
}
</style>
<script>
$(document).ready(function() {
$("#theButton").click(function() {
$(".contentBlueScreen").animate({backgroundPosition:"200%"},3000);
});
});
</script>
</head>
<body>
<div class="blueScreen">
<div class="contentBlueScreen">
<button id="theButton">MOve it</button>
</div>
</div>
</body>
</html>
答案 0 :(得分:1)
jQuery不会为backgroundPosition
设置动画,因为它通常需要两个值,而jQuery只能理解可以递增的常规数值。
这里有一个动画背景X和Y位置的解决方案:
JQuery Animate Background Image on Y-axis
答案 1 :(得分:0)
你可以移动整个div。
<强> Working Example 强>
JS
$(document).ready(function () {
$("#theButton").click(function () {
$(".contentBlueScreen").animate({
left: "200%"
}, 1500).animate({
left: 0
}, 1500);
});
});
CSS
.blueScreen {
background:url(http://s21.postimg.org/quy8jsc0n/blue_Screen.png);
background-size:100% 100%;
width:100%;
height:100%;
overflow:hidden;
}
.contentBlueScreen {
position:relative;
display:inline-block;
color:white;
width:400%;
height:100%;
}
img {
float:left;
list-style:none;
position:relative;
width:25%;
height:500px;
position:relative;
}
HTML
<div class="blueScreen">
<button id="theButton">MOve it</button>
<div class="contentBlueScreen">
<img src="http://i.imgur.com/a5m0HGp.png"/>
<img src="http://i.imgur.com/a5m0HGp.png"/>
<img src="http://i.imgur.com/a5m0HGp.png"/>
<img src="http://i.imgur.com/a5m0HGp.png"/>
</div>
</div>