最简单的hover写法,淡入淡出,关键在于pointer-events的使用,保证淡入淡出都有过渡效果的同时,子元素不会被父元素hover事件所影响!
function showTiShi(){var tm=0ts=document.getElementById("spanTiShi")
ts.style.display="block"
fadeIn()
function fadeIn(){
if(tm<1){
tm+=0.1
ts.style.opacity=tm
setTimeout(fadeIn,100)
}else{
setTimeout(fadeOut,5000)
}
}
function fadeOut(){
if(tm>0){
tm-=0.1
ts.style.opacity=tm
setTimeout(fadeOut,100)
}else{
ts.style.display="none"
}
}
}
@keyframes anim{
from {opacity: 1}
to {opacity: 0}
}
.anim-welcome
{
animation: anim 3s
}
执行时,为需要淡出的节点添加样式anim-welcome,兼容其他浏览器请自查;
该法为css3实现,不管如何兼容IE9-是无效的,全兼容需脚本支持:
$('#node').fadeout()