css指令碼化
阿新 • • 發佈:2018-11-19
dom.style.prop
1:可讀寫行間樣式,沒有相容性問題,碰到float的保留字屬性,其前面應加css (不加也可以)
2:複合屬性必須拆解, 組合單詞變成小駝峰式
border:"1px solid black";
屬性拆解
borderWidth:"1px";
borderStyle:"solid";
borderColor:"block";
小駝峰
backgroungColor:"red";
3:寫入的值必須是字串格式;
查詢計算樣式
兩個值 1:某一個元素 2:null
1.只讀
2.返回的計算樣式的值都是絕對值,沒有相對單位
width:'10em ' 返回width:'160px'
backgroungColor:"red"; 返回backgroungColor:"rgb(255,0,0)";
ie8以下不相容使用
ele.currentStyle
只讀
返回的計算樣式的值不是進過轉換的絕對值
ie獨有
*************
利用window.getComputedStyle獲取當前元素的偽元素
window.getComputedStyle(div,'after');
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> div:after{ content: ''; display: inline-block; width: 50px; height: 50px; background: gray; } </style> </head> <body> <div style="width: 100px;height: 100px;background: red;"></div> </body> <script> var div = document.getElementsByTagName('div')[0]; </script> </html>
查詢到div的after的width為50px
// 封裝getStyle
function getStyle(elem,prop){
if(window.getComputedStyle){
return window.getComputedStyle(elem,null)[prop];
}else {
return elem.currentStyle[prop];
}
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>利用getStyle實現一個塊做加速運動</title>
<style></style>
</head>
<body>
<div style="width: 100px;height: 100px;background: red;position:absolute;left: 0"></div>
</body>
<script>
// 封裝getStyle
function getStyle(elem,prop){
if(window.getComputedStyle){
return window.getComputedStyle(elem,null)[prop];
}else {
return elem.currentStyle[prop];
}
}
var div = document.getElementsByTagName('div')[0]
var w = window.getComputedStyle(div,'after').width;
var speed = 2
var timer =setInterval(function(){
speed +=speed/7;
div.style.left=parseInt(getStyle(div,'left'))+speed+"px";
if(parseInt(div.style.left)>500){
clearInterval(timer)
}
},10)
</script>
</html>