我有一个绝对有孩子的div。我希望这个div的顶部位置每x秒改变一次。我试过jquery setInterval
,但它只改变了一次。以下是我的代码。
.com_prices {
width: 100%;
height: 100%;
overflow: hidden;
background: #dd0d0d;
position: relative;
}
.com_tabs {
position: absolute;
height: auto;
width: 100%;
}
.com_price_tab {
width: 90%;
margin: 10px auto;
height: 100px;
background: #fff;
}
html
<div class="com_prices">
<div class="com_tabs">
<div class="com_price_tab"></div>
<div style="background: #28bc88" class="com_price_tab"></div>
<div style="background: #fff000" class="com_price_tab"></div>
<div style="background: #333" class="com_price_tab"></div>
<div style="background: #28bc88" class="com_price_tab"></div>
<div style="background: #999" class="com_price_tab"></div>
<div class="com_price_tab"></div>
<div class="com_price_tab"></div>
</div>
</div>
脚本
setInterval(function() {
$('.com_tabs').animate({top: "-100px"}, 350);
}, 2000);
答案 0 :(得分:2)
你设置的顶部等于“-100px”。您需要将当前位置减去100。
var $comtabs = $('.com_tabs');
setInterval(function() {
var top = parseInt($comtabs.css("top"));
$comtabs.animate({top: top - 100 + "px"}, 350);
}, 2000);
工作示例:
var $comtabs = $('.com_tabs');
setInterval(function() {
var top = parseInt($comtabs.css("top"));
$comtabs.animate({
top: top - 100 + "px"
}, 350);
}, 2000);
html,
body {
background: #000;
height: 100%;
margin: 0;
padding: 0;
}
.com_prices {
width: 100%;
height: 100%;
overflow: hidden;
background: #dd0d0d;
position: relative;
}
.com_tabs {
position: absolute;
height: auto;
width: 100%;
}
.com_price_tab {
width: 90%;
margin: 10px auto;
height: 100px;
background: #fff;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="com_prices">
<div class="com_tabs">
<div class="com_price_tab"></div>
<div style="background: #28bc88" class="com_price_tab"></div>
<div style="background: #fff000" class="com_price_tab"></div>
<div style="background: #333" class="com_price_tab"></div>
<div style="background: #28bc88" class="com_price_tab"></div>
<div style="background: #999" class="com_price_tab"></div>
<div class="com_price_tab"></div>
<div class="com_price_tab"></div>
</div>
</div>
答案 1 :(得分:1)
问题在于您将top
位置设置为-100px。在第一次该函数尝试将顶部位置设置为相同的值之后,它已经在(-100px),因此没有进行任何更改。
您可以获取当前最高值并从该值中减去100px。类似的东西:
setInterval(function() {
var $el = $('.com_tabs');
var top = $el.css('top');
var topNumber = top.substr(0, top.length -2) - 100;
console.log(topNumber);
$el.animate({top: topNumber + 'px'}, 350);
}, 2000);