91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

js之任意值運動框架

發布時間:2020-07-14 02:40:07 來源:網絡 閱讀:248 作者:水滴的歷程 欄目:軟件技術
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>任意值運動框架</title>
<style>
div{width:200px;height:200px;background:red;float:left;border:10px black solid;margin:50px;font-size:50px;color:yellow;}
#div4{filter:alpha(opacity:30);opacity:0.3;}
</style>
<script>
window.onload=function (){
	var oDiv1=document.getElementById('div1');
	var oDiv2=document.getElementById('div2');
	var oDiv3=document.getElementById('div3');
	var oDiv4=document.getElementById('div4');
	oDiv1.onmouseover=function (){
		StartMove(this,'width',500);
	};
	oDiv1.onmouseout=function (){
		StartMove(this,'width',200);
	};
	oDiv2.onmouseover=function (){
		StartMove(this,'height',500);
	};
	oDiv2.onmouseout=function (){
		StartMove(this,'height',100);
	};
	oDiv3.onmouseover=function (){
		StartMove(this,'font-size',100);
	};
	oDiv3.onmouseout=function (){
		StartMove(this,'font-size',50);
	};
	oDiv4.onmouseover=function (){
		StartMove(this,'opacity',100);
	};
	oDiv4.onmouseout=function (){
		StartMove(this,'opacity',30);
	};
};
function getstyle(obj,name)
{
		if(obj.currentStyle) 		//針對ie獲取
		{
				return obj.currentStyle[name];
		}
		else			//針對非行間樣式
		{
			return getComputedStyle(obj,null)[name];
		}
};
function StartMove(obj,ss,itarget)
{
	
	clearInterval(obj.timer);
	obj.timer=setInterval(function (){
		var cur=0;
		if(ss=='opacity'){
			cur=parseFloat(getstyle(obj,ss))*100
		}
		else
		{
			cur=parseInt(getstyle(obj,ss));
		}
		var speed=(itarget-cur)/4;
		speed=speed>0?Math.ceil(speed):Math.floor(speed);
		if(itarget-cur==0){
			clearInterval(obj.timer);	
		}
		else{
			if(ss=='opacity')
			{
				obj.style.filter='alpha(opacity='+(cur+speed)+')';
				//通過if-else里的取整解決ie里透明度獲取值存在偏差問題
				if((cur+speed)>=30)
				{
					obj.style.opacity=Math.ceil((cur+speed))/100;
				}
				else
				{
					obj.style.opacity=Math.floor((cur+speed))/100;
				}
				document.getElementById('txt1').value=cur+speed;
			}
			else
			{
				obj.style[ss]=cur+speed+'px';
			}
		}
	},30);
};
</script>
</head>

<body>
<div id="div1">
變寬</div>
<div id="div2">
變高</div>
<div id="div3">
字符變大</div>
<div id="div4">
<input id="txt1" type="text" ? />
</div>
</body>
</html>


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

山阴县| 尤溪县| 长宁县| 登封市| 依安县| 合江县| 永修县| 板桥市| 大田县| 张家界市| 扎赉特旗| 荣成市| 荃湾区| 勃利县| 仁怀市| 潞西市| 疏附县| 托克逊县| 鄂托克前旗| 资讯| 汨罗市| 皋兰县| 穆棱市| 嘉荫县| 缙云县| 金华市| 通河县| 岚皋县| 屏山县| 东海县| 定安县| 玉林市| 奇台县| 宁津县| 青海省| 湖州市| 延长县| 阿尔山市| 普宁市| 合阳县| 东台市|