2
我有一個工作的jQueryMobile HTML標記,但是當我嘗試使它與我將使用的不同HTML標記一起工作時,動畫不起作用,我試圖使用不同的jQuery方法&函數使其工作。似乎沒有任何工作。動畫不能用不同的HTML標記
工作實例http://jsfiddle.net/yVtVe/22/
需要實現同爲http://jsfiddle.net/yVtVE/25/
childrenvar stopAnim = false;
function animateTitle(scrollingWidth, initialOffset,elem){
if(!stopAnim){
var $a = elem;
$a.animate({left: (($a.offset().left == (scrollingWidth + initialOffset))?-initialOffset:("-="+scrollingWidth))},
{
duration: 5000,
easing: 'swing',
complete: function(){
if($a.offset().left < 0){
$(this).css("left", scrollingWidth);
}
animateTitle(scrollingWidth);
}
});
}
}
$('#swrapper ul li').hover(
function() {
var scrollingWidth = $(this).children('div.list-heading').children('h2').width();
alert(scrollingWidth);
var elem = $(this).children('div.list-heading').children('h2');
if(scrollingWidth > 330){
scrollingWidth = scrollingWidth + 10;
var initialOffset = $(this).children('div.list-heading').children('h2').offset().left;
stopAnim = false;
animateTitle(scrollingWidth, initialOffset,elem);
}
},
function() {
stopAnim = true;
$(this).children('div.list-heading').children('h2').stop(true, true).css("left", "0");
}
);
爲什麼那麼同樣工作在http://jsfiddle.net/yVtVe/22/ – Learning
它不工作仍然我的意思是動畫... – Learning
我現在正在工作 –