In diesem Artikel wird anhand eines Beispiels die Funktion der stop()-Methode von animate in jquery analysiert. Teilen Sie es als Referenz mit allen. Die spezifische Analyse lautet wie folgt:
Hier ist ein Codeausschnitt aus einem Video, der Ihnen die Funktion von stop() erklärt:
Der Code lautet wie folgt:
<style type="text/css"> ul li{ width:50px; height:30px; background:#333; margin-bottom:10px; color:#fff;} </style> <ul id="flyul"> <li>wod a </li> <li>wod a </li> <li>wod a </li> <li>wod a </li> <li>wod a </li> </ul> <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script> <script type="text/javascript"> $('#flyul li').mouseenter(function(){ $(this).stop().animate({ //将此处改为$(this).animate({对比一下不带stop的运行效果 width:'300px' },1000); }); $('#flyul li').mouseleave(function(){ $(this).stop().animate({ //将此处改为$(this).animate({对比一下不带stop的运行效果 width:'50px' },1000); }); </script>
Ich hoffe, dass dieser Artikel für alle bei der jQuery-Programmierung hilfreich sein wird.