我有一个酒吧,我正在尝试制作动画,但我在这里遗漏了一些东西。这是我的 HTML
<div class="bar"><span style="width: 74%;"></span></div>
这是jQuery:
$(document).ready(function(){
$('.bar span').each(function(){
var $percent = $(this).find('span').css('width') * 0.8;
$(this).find('.bar span').animate(
{width:$percent+"%"},
{duration: 5000});
})
});
我知道我很接近......但似乎无法找到动画它的跨度。
谢谢大家的帮助。我最终让它在标题标签中寻找一个数字,因为我无法让它计算出宽度的值。这是我结束的jquery。
$(document).ready(function(){
$('.bar span').each(function(){
var $percent = $(this).attr('title') * 0.8;
$(this).animate(
{width:$percent+"%"},
{duration: 1000});
})
});