1 回答

TA貢獻(xiàn)1779條經(jīng)驗(yàn) 獲得超6個(gè)贊
利用閉包實(shí)現(xiàn)就可以了..
//settimeout
<script>
window.onload=function(){
document.getElementById('test').onmouseover=show;
document.getElementById('test').onmouseout=hide;
}
function
setOpacity(elem,num){
if(elem.filters){
return
elem.style.filter='alpha(opacity='+num+')';
}else{
return
elem.style.opacity=parseFloat(num/100);
}
}
function
show(){
var
$this=this;
for(
var
i=0;i<=100;i++){
(function(){
//catch
i;
var
p=i;
setTimeout(function(){
setOpacity($this,p);
},p*2);
})();
}
}
function
hide(){
var
$this=this;
for(var
i=100;i>=0;i--){
(function(){
//catch
i;
var
p=i;
setTimeout(function(){
setOpacity($this,100-p);
},p/2);
})();
}
}
</script>
<style>
#test{
width:200px;
height:200px;
background:#ff0099;
*filter:alpha(opacity=0);
opacity:0;
}
</style>
<body>
<div
id='test'></div>
</body>
//其實(shí)這個(gè)問題我很久之前有做過...實(shí)現(xiàn)淡入的方法很簡單...但是淡出..不知道為什么..用同樣的方法總是不行...
其實(shí)一樓說的jquery很容易實(shí)現(xiàn)..我早上也查了一下jquery
原碼..當(dāng)時(shí)是查的hide和show..不過它是通過其他的函數(shù)來實(shí)現(xiàn)的.fade倒是沒有找到....今天看到你的問題我重新做了一次...還是那個(gè)問題...后來用變量跟蹤發(fā)現(xiàn)...hide函數(shù)i被捕獲后..p確實(shí)=i.但是進(jìn)入setTimeout函數(shù)后.它就會(huì)變成100-P....所以hide函數(shù)我給他改成了100-p....但是具體的原因我也很郁悶...
后來用interval的方法來實(shí)現(xiàn)....就不存在這個(gè)問題了...
//setinterval
var
i=0;
var
showID;
var
hideID;
window.onload=function(){
document.getElementById('test').onmouseover=show;
document.getElementById('test').onmouseout=hide;
}
function
setOpacity(elem,num){
if(elem.filters){
return
elem.style.filter='alpha(opacity='+num+')';
}else{
return
elem.style.opacity=parseFloat(num/100);
}
}
function
show(){
var
$this=this;
showID=setInterval(function(){
if(i<100){
setOpacity($this,i);
i+=5;
}else{
clearInterval(showID);
}
},10);
}
function
hide(){
var
$this=this;
hideID=setInterval(function(){
if(i>=0){
setOpacity($this,i);
i-=5;
}else{
clearInterval(hideID);
}
},10);
}
希望能幫到你
添加回答
舉報(bào)