码迷,mamicode.com
首页 > Web开发 > 详细

图片每天换及纯css3手风琴特效

时间:2016-12-02 02:15:32      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:abs   javascrip   css3   var   java   blank   type   lan   程序   


<a target="_blank" id="a"><img id="img" /></a> <script type="text/javascript"> var imgSrc = new Date().getDate() +‘.jpg‘; document.getElementById(‘img‘).src = imgSrc; document.getElementById(‘a‘).href = imgSrc ; </script>

 手风琴特效:

css样式

#p1{ float:left;
      width:50px;
	  height:200px;
	  background-color:#000;
	  transition:width 1s;
	  }
#p2{ float:left;
      width:50px;
	  height:200px; 
	  background-color:#F00;
	  transition:width 1s;
	  }
#p3{ float:left;
      width:50px;
	  height:200px; 
	  background-color:#6F0;
	  transition:width 1s;
	  }
#p4{ float:left;
      width:50px;
	  height:200px;
	  background-color:#00F;
	  transition:width 1s;
	  }
#p1:hover{ width:400px}
#p2:hover{ width:400px}
#p3:hover{ width:400px}
#p4:hover{ width:400px}

#p5{ float:right;
      width:50px;
	  height:200px;
	  background-color:#000;
	  transition:width 1s;
	  }
#p6{ float:right;
      width:50px;
	  height:200px; 
	  background-color:#F00;
	  transition:width 1s;
	  }
#p7{ float:right;
      width:50px;
	  height:200px; 
	  background-color:#6F0;
	  transition:width 1s;
	  
	  }
#p8{ float:right;
      width:50px;
	  height:200px;
	  background-color:#00F;
	  transition:width 1s;
	  }
#p5:hover{ width:400px}
#p6:hover{ width:400px}
#p7:hover{ width:400px}
#p8:hover{ width:400px}

  body程序:

<div style=" width:800px; height:200px;">
<div id="p1"></div>
<div id="p2"></div>
<div id="p3"></div>
<div id="p4"></div>

<div style="width:400px; height:200px; position: absolute; left:208px; background-color:#C00; z-index:-1"></div>
<div id="p5"></div>
<div id="p6"></div>
<div id="p7"></div>
<div id="p8"></div>
</div>

  

图片每天换及纯css3手风琴特效

标签:abs   javascrip   css3   var   java   blank   type   lan   程序   

原文地址:http://www.cnblogs.com/cyrfr/p/6123568.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!