시뮬레이션 시나닷컴 웨이보의'다들 말하는'자바스크립트.
html:
- 1
- 2
- 3
- 4
초기화:
$(function(){
/*
* discription: doing section for li roundabout
*/
roundabout.move(4000);
//on over div#doing stop flash.
roundabout.mstop('#doing');
})
:
/*
* author: teresa 2010-12-31
* description: roundabout object
roundabout.move(time) : start move;
roundabout.stop(): stop ;
roundabout.mstop(obj): when mouseover obj stop roundabout & mouseout restart roundabout.
*/
var roundabout = {
//index : 0,
move: function(time){
//move
roundabout.o = $('#doing ul li');
var height = roundabout.o.last().height();
roundabout.inter = setInterval("roundabout_event();fade_in("+height+");",time);
},
stop: function(){
//stop
roundabout.inter = clearInterval(roundabout.inter);
},
mstop: function(o){
$(o).mouseover(function(){
roundabout.stop();
}).mouseout(function(){
roundabout.move(4000);
})
}
}
function roundabout_event(){
var o = $('#doing ul li');
o.last().clone(true).insertBefore(o.first());
}
function fade_in()
{
var o = $('#doing ul li');
//return;
var h = o.last().height(); o.first().css({height:'0',opacity:'0',overflow:'hidden'});
o.first().animate({height:h},1000);
o.first().animate({opacity:'1'},500);
o.last().detach();
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
localStorage에 객체를 추가하는 방법은 무엇입니까?이 노트에서는 localStorage에 객체를 삽입하는 방법을 보여드리겠습니다. 경우에 따라 로컬 스토리지 또는 세션 스토리지에 데이터를 개체로 저장해야 할 수 있습니다. 어떻게 이것을 달성할 수 있습니까? 객체가 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.