fadeout
fade和fade away有什么区别?
一、意思不同:1、fade:v. 逐渐消失;褪色;凋谢;n. 淡入;淡出例句:All colour fades — especially under the impact of direct sunlight所有颜色都会褪色——尤其是在阳光直射下。2、fade away:逐渐消失; 褪色例句:Tears can be silent, but love will fade away free and easy!泪可以保持沉默,但爱将消失自由和简单二、侧重点不同:1、fade:强调事物逐渐消失的过程2、fade away:除了指出上面的状态,还明确了结果,已经消失了,真正结束了。扩展资料“fade”的其他相关短语:1、fade in意思是:指淡入;渐渐显示。例句:I tended to fade in the evening, while she was still alert.译文:我到了晚上就会变得昏沉,可她还是还是十分清醒。2、fade from意思是:从…中消逝例句:Our fingerprints don't fade from the lives we touch .译文:我们的指纹不会从接触过的人那消失。3、fade into意思是:渐渐融入于例句:The colours fade into one another.译文:这种料子褪色吗?
怎么区分die away 与fade away
两者意思有重合处 都有“逐渐消失 平息” 的意思 主要是看所使用的语境了
die away: 强调的是(情感,风、声音)减弱/平息;还有动植物的死亡,消失,以及 假死(昏厥)这个用的极少
His anger died away.
他的怒气逐渐平息下来了。
The winds die away after the typhoon passed.
台风过后,风渐渐平息了。
The noise of the car die away in the distance.
汽车的声音消失在远方
Almost as quickly as they appeared, these small plants die away.
这些小植物很快就消失了,几乎就象它们长出来时那样迅速。
She died away at the sight.
她一看到这情况就昏过去了(这个少见)
fade away 强调的是 图像,情感方面的东西“ 逐渐消失褪色”比如说记忆 ,人的感情,荣耀等
Memories of my sister faded away after many years.
过了多年以后,对我姐姐的记忆渐渐淡化了。
The memory of his hard childhood will never fade away.
他童年时期的痛苦记忆永远不会逝去。
The wins and losses that once seemed so important will fade away.
而曾经对你如此重要的成功与失败也将随风飘逝。
Even the glory had fade away, but you can still shine if you meet the right sun.
荣耀有退色,但你能仍然发光如果你遇见正确的太阳!
当然两者也有重合的地方 比如表示声音时候两者都可以使用。。。但是其它的方面还是有很大区别的 希望对你有所帮助 呵呵
jQuery 中的hover 和 mouseover 有什么区别
这2个是有区别的。
hover是指分别当鼠标指针进入和离开元素时被执行的事件相当于mouseenter+mouseleave。而mouseover鼠标进入某个元素或其子元素时触发。
可参考mouseover和mouseenter的区别:http://www.w3school.com.cn/tiy/t.asp?f=jquery_event_mouseenter_mouseover
而mousemove如你所说只要鼠标移动,哪怕只有1像素就会触发。因为用户在浏览网页的过程中,鼠标是会不停移动的,所以一旦绑定这个事件,网页就会不停的执行mousemove所绑定的响应函数,消耗系统资源。这里的系统资源是指客户端的。。
关于jquery中hover、fadeOut、fadeIn问题
首先,严重声明:隐藏的元素是没法触发鼠标事件的。所以你这想法根本行不通。其次,你写$('.c').hide();的本意应该是一开始让.c隐藏的,但是这样没法达到预期效果,必须要加载执行这动作才行,所以应该写成$(function(){$('.c').hide();})$(function(){$('.c p').hide();$('.c').hover(function(){$(this).find('p').fadeIn();},function(){$(this).find('p').fadeOut();})})Mouse HereHello
关于jquery的fadeIn()和fadeOut()问题
你代码写错了,最后一句调用hidefunction方法时不应该带小括号
$("#button").click(function hidefunction(){
$("#img1").fadeOut(1000,function(){$("#img2").fadeOut(1000,function(){$("#img2").fadeIn(1000,function(){
$("#img1").fadeIn(1000,hidefunction)})})});
});
就可以了
上一篇:赵雅丽
下一篇:没有了