jQuery切换动画
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery切换动画相关的知识,希望对你有一定的参考价值。
Just leaving this here for my own reference ;)
$(document).ready(function(){ $('#clickme').toggle( function(){ $('#animateme').animate({marginLeft: "250"}, 1000); }, function(){ $('#animateme').animate({marginLeft: "0"}, 1000); }); });
以上是关于jQuery切换动画的主要内容,如果未能解决你的问题,请参考以下文章