css3照片墙


博客分类:

效果图:

1.
 css3照片墙_第1张图片 
 

2.
 css3照片墙_第2张图片
 ....

 

 鼠标放在图片上,图片选择一定角度,放大,有阴影效果.

 

 实现代码:

 html:

伦理片 http://www.dotdy.com/

Html代码   收藏代码
  1. >  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4.   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
  5.   <title>css3照片墙title>  
  6.     
  7.   <link href="linkcss.css" type="text/css" rel="stylesheet"/>  
  8.     
  9. head>  
  10.   
  11. <body>  
  12.   <h1>照片墙制作h1>  
  13.   <div class="container">  
  14.      <img class="pic1" src="imges/1.jpg" />  
  15.      <img class="pic2" src="imges/2.jpg" />  
  16.      <img class="pic3" src="imges/3.jpg" />  
  17.      <img class="pic4" src="imges/4.jpg" />  
  18.      <img class="pic5" src="imges/5.jpg" />  
  19.      <img class="pic6" src="imges/6.jpg" />  
  20.      <img class="pic7" src="imges/7.jpg" />  
  21.   div>  
  22. body>  
  23. html>  

 

 css:

Html代码   收藏代码
  1. body{background:#eee}  
  2. h1{text-align:center}  
  3. .container{width:960px;height:450px;margin:60px auto;position:relative}  
  4. img{padding:10px 10px 15px;background:#fff;border:1px solid #ddd;position:absolute;transition:1s;  
  5. z-index:1}  
  6. img:hover{  
  7.        transform:rotate(0deg);  
  8.        transform:scale(1.2);  
  9.        box-shadow:10px -10px 15px #ccc;  
  10.        z-index:2000;  
  11.         }  
  12. .pic1{  
  13.     top:20px;left:450px;transform:rotate(-25deg);  
  14.     }  
  15.       
  16. .pic2{  
  17.     top:50px;left:10px;transform:rotate(30deg);  
  18.     }  
  19. .pic3{  
  20.     top:150px;left:150px;transform:rotate(40deg);  
  21.     }  
  22. .pic4{  
  23.     top:150px;left:550px;transform:rotate(25deg);  
  24.     }  
  25. .pic5{  
  26.     top:250px;left:10px;transform:rotate(-10deg);  
  27.     }  
  28. .pic6{  
  29.     top:250px;left:450px;transform:rotate(30deg);  
  30.     }  
  31. .pic7{  
  32.     top:250px;left:250px;transform:rotate(15deg);  
  33.     }  


影音先锋电影 http://www.iskdy.com/ 

 很好懂的.

 补充:

 
  css3照片墙_第3张图片
 

你可能感兴趣的:(css3照片墙)