css js html记录

1:颜色值缩写

   09c=0099cc

2:div居中显示

   position:absolute;  //把div左上角放在body的中心,向左上挪动宽高的一半

width:600px;
height:400px;
left:50%;           //相对于右移50%
top:50%;
margin:-200px 0 0 -300px; /*负数表示向反方向移动*/

3:RGB是去色法,值越高,颜色越浅

   background:#09C;  绿色  最大值是255*255*255

4: setInterval() 是DOM编程中window对象的方法会不停地调用函数,直到 clearInterval() 被调用或窗口被关闭。由 setInterval() 返回的 ID 值可用作 clearInterval() 方法的参数。

setInterval(code,millisec[,"lang"])

<input type="text" id="clock" size="35" />
<script language=javascript>
var int=self.setInterval("clock()",50)
function clock()
  {
  var t=new Date()
  document.getElementById("clock").value=t
  }
</script>
</form>
<button onclick="int=window.clearInterval(int)">
Stop interval</button> 

 5:trigger()方法促发

   可以使用top的属性来实现图片滚动 top为负数:则背景图片向上,为整数向下,因此可以实现图片滚动效果

   jquery里面的.hover代替了原始的onmouseover() 和 onmouseout()

  JQuery里.取而代之的是 hover(over,out)事件.

 

 

$("#id").hover(

function(){

   //当鼠标放上去的时候,程序处理

},

function(){

   //当鼠标离开的时候,程序处理

}); 可以实现鼠标的特效 在配上top属性可以实现图片切换效果

 

你可能感兴趣的:(window,职场,最大值,休闲)