jQuery中的动画
2021-01-28 02:12
标签:ext ane content hide ade jquery show func 的区别 1.控制元素的显示及隐藏 show( )控制元素的显示,hide( )控制元素的隐藏 2.改变元素的透明度 fadeIn( )和fadeOut( )可以通过改变元素的透明度实现淡入淡出效果 例子: 3.改变元素的高度 slideDown( )可以使元素逐步延伸显示 slideUp( )则使元素逐步缩短直至隐藏 例子: 4.自定义动画 $(selector). animate({params},speed,callback); 5.注: 1.对比fadeIn()与show(),slideDown()的区别 .show(‘duration‘)和.hide(‘duration‘) 是长度、宽度、透明度三个属性一起变化; fadeIn()/fodeOut是设置好了盒子的尺寸,变化透明度(所以用户看到页面会跳一下); slideDown()/slideUp() 仅改变元素的高度;(过渡自然) 2.mouseover和mouseenter的区别 mouseover事件会冒泡,这意味着,鼠标移到其后代元素上时会触发。 mouseenter事件不冒泡,这意味着,鼠标移到其后代元素上时不会触发 jQuery中的动画 标签:ext ane content hide ade jquery show func 的区别 原文地址:https://www.cnblogs.com/yangshuwen/p/13216214.html 例子:
$("element").show("slow"); $("#panel h5.head").toggle(function(){
$(this).next("div.content").fadeOut();
},function(){
$(this).next("div.content").fadeIn();
});
$("#panel h5.head").toggle(function(){
$(this).next("div.content").slideUp();
},function(){
$(this).next("div.content").slideDown();
});