第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

大神幫忙找找錯(cuò),為什么說getComputedStyle在window下獲取失???

<!doctype?html>
<html>
<head>
<meta?charset="utf-8">
<title>鏈?zhǔn)竭\(yùn)動(dòng)</title>
<style>
*{
	padding:0;
	margin:0;
	list-style:none;
}
#box{
	margin:0?auto;
	background:orange;
	width:200px;
	height:200px;
	opacity:0.3;
	filter:alpha(opacity:30);
	margin-bottom:20px;
}
</style>
<script>
window.onload=function(){
	var?div=document.getElementById("box");
	div.onmouseover=function(){
		change(this,'width',400,function(){
			change(this,'height',400);
		});
	}
}
function?getStyle(obj,attr){
	if(obj.currentStyle){
		return?obj.currentStyle[attr];
	}
	else{
		return?getComputedStyle(obj,false)[attr];
	}
}

function?change(obj,attr,target,fn){
	clearInterval(obj.timer);

	obj.timer?=?setInterval(function(){
		var?val?=?0;
		if(attr?==?'opacity'){
			val?=?Math.round(parseFloat(getStyle(obj,attr))*100);
		}
		else{
			val?=?parseInt(getStyle(obj,attr));
		}


		var?speed?=?(target-val)/8;
		speed?=?speed>0???Math.ceil(speed)?:?Math.floor(speed);


		if(val?==?target){
			clearInterval(obj.timer);
//判斷是否傳入了fn
			if(fn){
				fn();
			}
		}
		else{
			if(attr?==?'opacity'){
				obj.style.filter?=?'alpha(opacity:'?+?val+speed?+?')';
				obj.style.opacity?=?(val+speed)/100;
			}
			else{
				obj.style[attr]?=?val?+?speed?+"px";
			}
		}
	},30)
}
</script>
</head>
<body>
<div?id="box"></div>
</body>
</html>


正在回答

4 回答

別直接用This,將this賦值給一個(gè)變量,如var that=this;

1 回復(fù) 有任何疑惑可以回復(fù)我~

但是如果是for循環(huán)里面的話 ?this就不能改啊

0 回復(fù) 有任何疑惑可以回復(fù)我~
window.onload=function(){
????var?div=document.getElementById("box");
????div.onmouseover=function(){
????????change(this,'width',400,function(){
????????????change(this,'height',400);
????????});
????}
}

這里的外層change()可以傳this,但是到了里層change()時(shí),this就代表window對(duì)象了??梢愿某蒬iv

1 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消
JS動(dòng)畫效果
  • 參與學(xué)習(xí)       113917    人
  • 解答問題       1502    個(gè)

通過本課程JS動(dòng)畫的學(xué)習(xí),從簡(jiǎn)單動(dòng)畫開始,逐步深入各種動(dòng)畫框架封裝

進(jìn)入課程

大神幫忙找找錯(cuò),為什么說getComputedStyle在window下獲取失???

我要回答 關(guān)注問題
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)