-
d1.style["width"]="200px"; //very important查看全部
-
<!DOCTYPE html> <html> <head> <title>20160219</title> <style type="text/css"> *{padding: 0;margin: 0;} #d1{ width:100px; height:200px; background:red; } </style> <script type="text/javascript"> window.onload=function(){ var d1=document.getElementById("d1"); alert(d1.style.width);//为什么不能弹出值? } </script> </head> <body> <div id="d1"></div> </body> </html>查看全部
-
分散注意力查看全部
-
parseInt(opp.style.width)-1+"px"为什么不行?查看全部
-
font-size用getStyle函数取属性值是fontSize查看全部
-
学技术不能参假,一有不懂立刻解决。不要积累起下次一起解决,久而久之,就会越积越多。每天都要有代码训练,三天不练手生。查看全部
-
设置定时器,每隔一段时间改变位置就实现了匀速运动查看全部
-
selectedIndex查看全部
-
要加px,不要忘记了。查看全部
-
看完立刻学习,效果最好。查看全部
-
//多个句柄需要添加逗号 //句柄相当于函数,event.addHandler();查看全部
-
实现思路查看全部
-
JSON格式: var json = {name1:key1,name2:key2,...} for(var i in json){ alert(i); //遍历name alert(json[i]); //遍历key }查看全部
-
// JavaScript Document function getStyle(obj,attr){ if(obj.currentStyle){ return obj.currentStyle[attr]; // if IE }else{ return getComputedStyle(obj,false)[attr]; //if FireFox } } //startMove(obj,{attr1:itarget1,attr2:itarget2},fn) function startMove(obj,json,fn){ clearInterval(obj.time); var flag = true; //标志所有运动是否到达目标值 obj.time=setInterval(function(){ for(var attr in json){ //取值前的值 var icur=0; //判断是否是透明度 if(attr=='opacity'){ icur=Math.round(parseFloat(getStyle(obj,attr))*100); } else{ icur=parseInt(getStyle(obj,attr)); } //动画的速度 var speed=(json[attr]-icur)/8; speed=speed>0?Math.ceil(speed):Math.floor(speed); if(icur!=json[attr]){ flag=false; } if(attr=='opacity'){ obj.style.filter='alpha(opacity:'+(icur+speed)+')';//IE obj.style.opacity=(icur+speed)/100; } else{ obj.style[attr]=icur+speed+'px'; } } if(fn){ fn(); } },30) }查看全部
-
$(function(){ $('#move a').mouseenter(function(){ $(this).find('i').animate({top:"200px",opacity:0},300,function(){ $(this).css({top:-200}); $(this).animate({top:"0px",opacity:100},200); }); }); });查看全部
举报
0/150
提交
取消