我想在這個頁面的右側實現這樣的事情嗎? http://playground.deaxon.com/css/text-switch/jquery動畫文本切換
我到目前爲止沒有接近它的內容?它有很好的滑動效果。 有人可以幫助我實現他們在上述網站中的內容嗎?
是我到目前爲止有: http://jsfiddle.net/9WwQ9/
jQuery(document).ready(function(){
jQuery('.up-down').mouseover(function(){
jQuery('.default').stop().animate({
height: 0
}, 60);
}).mouseout(function(){
jQuery('.default').stop().animate({
height: 60
}, 60)
})
});
你的鏈接頁面僅使用HTML和CSS來獲得的效果,你可以抓住他們的代碼,看看它是否適合你... – Tallmaris