css3照片墙+曲线阴影

  最近在学习jquery,晚上想复习下以前学过的知识,看到网上有关于css3照片墙的,感觉挺好玩的,就做了做。(以下图片均来自网络)

一、css3照片墙

html部分:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>css3照片墙</title>
		<link rel="stylesheet" type="text/css" href="css/style.css"/>
	</head>
	<body>
		<div class="content">
			<img class="pic1" src="data:images/1.jpg" />
			<img class="pic2" src="data:images/2.jpg" />
			<img class="pic3" src="data:images/3.jpg" />
			<img class="pic4" src="data:images/4.jpg" />
			<img class="pic5" src="data:images/5.jpg" />
			<img class="pic6" src="data:images/6.jpg" />
			<img class="pic7" src="data:images/7.jpg" />
			<img class="pic8" src="data:images/8.jpg" />
			<img class="pic9" src="data:images/9.jpg" />
			<img class="pic10" src="data:images/10.jpg" />
		</div>
	</body>
</html>

css部分:

body{
  background: url(../images/bg5.jpg) no-repeat top center fixed;
  background-size: 100% auto;
}
.content{
	width: 900px;
    height: 600px;
    margin: 100px auto;
    position: relative;
}
img{
	width: 20%;
    height: auto;
    z-index: 1;
    position: absolute;
    padding: 10px 10px 15px 10px;
    background-color: white;
    border: 1px solid #ccc;
    /*动画的时间*/
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
img:hover{
  z-index: 2;
  /*缩放倍数*/
  -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    /*阴影效果*/
    box-shadow: 10px 10px 20px #000;
}
/*下面对每一个图片进行旋转处理*/
.pic1{
	left: 100px;
	top: 50px;
	-webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
	transform: rotate(-20deg);
}
.pic2{
	left: 280px;
	top: 60px;
	-webkit-transform: rotate(100deg);
    -moz-transform: rotate(10deg);
	transform: rotate(10deg);
}
.pic3{
	left: 450px;
	top: 50px;
	-webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
	transform: rotate(20deg);
}
.pic4{
	left:630px;
	top: 60px;
	-webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
	transform: rotate(-20deg);
}
.pic5{
	left: 130px;
    top: 240px;
	-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.pic6{
	left: 320px;
    top: 240px;
	-webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
	transform: rotate(20deg);
}
.pic7{
	left: 520px;
	top: 240px;
	-webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
	transform: rotate(-10deg);
}
.pic8{
	left: 140px;
    top: 420px;
	-webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
	transform: rotate(20deg);
}
.pic9{
	left: 330px;
    top: 420px;
	-webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
	transform: rotate(10deg);
}
.pic10{
	left: 525px;
    top: 420px;
	-webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
	transform: rotate(-30deg);
}

  此时的显示结果为,当鼠标移动上去的时候,图片会回到之前的位置,并且变为原来的1.5倍

二、css3曲线阴影

  html部分:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>css3中的曲线阴影效果</title>
		<link rel="stylesheet" type="text/css" href="css/test.css" />
	</head>

	<body>
		<div class="demo sty">
			<h1>曲线阴影效果</h1>
		</div>
		<ul class="box">
			<li><img src="data:images/2.jpg" /></li>
			<li><img src="data:images/4.jpg" /></li>
			<li><img src="data:images/5.jpg" /></li>
		</ul>
	</body>

</html>

  css部分:

*{
	margin: 0;
	padding: 0;
	list-style: none;
}
.demo{
	width: 980px;
    height: 200px;
    margin: 50px auto;
    line-height: 200px;
    font-size: 24px;
    text-align: center;
    background-color: #fff;
}
.sty{
	position: relative;
	box-shadow: 0 1px 4px rgba(0,0,0,0.3),
				0 0 40px rgba(0,0,0,0.1) inset;
	border-radius: 10px;
}

.box{
	width: 980px;
    height: 300px;
    margin: 0 auto;
}
.box li img{
	display: block;
	width: 290px;
	height: 200px;
	border-radius: 8px;
}
.box li{
    position: relative;
    float: left;
    width: 290px;
	height: 200px;
    background-color: #fff;
    padding: 5px;
    margin-right: 25px;
    box-shadow: 0 0px 4px rgba(0,0,0,0.3) ,
    			0 0 60px rgba(0,0,0,0.1) inset;
    border-radius: 8px;
}

  此时的效果为如下图:(只是简单的增加了圆角和一点阴影)

  学完了css3中的变形和:before和:after,我们还可以增添如下代码:

//不满足之前的效果,我们还可以通过:before或是:after来增添效果
.sty:after , .sty:before{
	position: absolute;
		content: '';
		top: 50%;
		bottom: -1px;
		left: 10px;
		right: 10px;
		background:#fff;
		z-index: -1;
		box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.box li:before{
	position: absolute;
	content: '';
	width: 90%;
	height: 80%;
	left: 18px;
	bottom: 11px;
	z-index: -2;
	background: transparent;
	box-shadow: 0 8px 20px rgba(0,0,0,0.6);
	transform: skew(-12deg) rotate(-5deg);
}
.box li:after{
	position: absolute;
	content: '';
	width: 90%;
	height: 80%;
	left: 18px;
	bottom: 11px;
	z-index: -2;
	background: transparent;
	box-shadow: 0 8px 20px rgba(0,0,0,0.6);
	transform: skew(12deg) rotate(5deg);
}

最终显示结果为:

css3照片墙+曲线阴影的更多相关文章

  1. 转载---CSS3实现曲线阴影和翘边阴影

    预备知识 DIV+CSS基础 圆角:border-radius 2D变换:transform:skew && rotate 伪类::before 和 :after 代码 HTML结构代 ...

  2. 【CSS3】---曲线阴影翘边阴影

    效果图 代码 index <!DOCTYPE html> <html> <head> <meta charset=utf-8 /> <title& ...

  3. css3 曲线阴影,翘边阴影

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  4. IE下实现类似CSS3 text-shadow文字阴影的几种方法

    IE下实现类似CSS3 text-shadow文字阴影的几种方法 一.开始的擦边话 为了测试IE9浏览器,下午晃晃荡荡把系统换成window7的了.果然,正如网上所传言的一样,IE9浏览器确实不支持C ...

  5. CSS3知识之阴影box-shadow

    一.定义和用法 box-shadow 属性向框添加一个或多个阴影. box-shadow: h-shadow v-shadow blur spread color inset; h-shadow   ...

  6. CSS3 文本效果(阴影)

    CSS3中包含几个新的文本特征. 在本章中您将了解以下文本属性: text-shadow box-shadow text-overflow word-wrap word-break CSS3 的文本阴 ...

  7. CSS3实现带阴影的弹球

    实现div上下跳动时,底部阴影随着变化 <!DOCTYPE html> <html lang="en"> <head> <meta cha ...

  8. Long Shadows Generate是一款在线使用纯CSS3实现长阴影的效果,一款强大的扁平化长投影制造器。

    Long Shadows Generate是一款在线使用纯CSS3实现长阴影的效果,一款强大的扁平化长投影制造器. Long Shadows Generate 彩蛋爆料直击现场 Long Shadow ...

  9. CSS3的文字阴影—text-shadow

    text-shadow还没有出现时,大家在网页设计中阴影一般都是用photoshop做成图片,现在有了css3可以直接使用text-shadow属性来指定阴影. 这个属性可以有两个作用,产生阴影和模糊 ...

随机推荐

  1. Access to the path '20141211142713.gif' is denied.

    给network service加上读写权限即可

  2. MAC电脑操作快捷键

    注:command即苹果键,也有人称为花键.ctrl即control键.escape即键盘左上角的esc键.space空格键. 屏幕捕捉快捷键 动作:保存到-快捷键 全屏捕捉-桌面(.pdf文件):c ...

  3. checkbox的三种状态处理

    checkbox只有两种值:选中(checked)或未选中(unchecked).它可以有任何值,但是表单提交时checkbox的值只能是checked或unchecked.它的默认值是uncheck ...

  4. 隐藏nginx 版本号信息

    为了安全,想将http请求响应头里的nginx版本号信息隐藏掉: 1. nginx配置文件里增加 server_tokens off; server_tokens作用域是http server loc ...

  5. 常用jquery插件资料

    fullPage.js 全屏滚动https://github.com/alvarotrigo/fullPage.js Lava Lamp 导航条熔岩灯http://lavalamp.magicmedi ...

  6. 每日英语:Mistrust Between U.S., Malaysia Strains Probe

    Mistrust between U.S. and Malaysian air-accident investigators has hampered a multinational probe in ...

  7. BW基于ALE的主数据增量机制分析

    1     概述 前段时间在项目中碰到一个问题,地点物料0MAT_PLANT_ATTR属性主数据因为有两个多月没有做增量更新,导致在之后的每次增量抽取活动中因为抽取的数据量过大使得在源系统的进程中发生 ...

  8. ADT公司G729 方案指标

    ADT公司G729 方案指标 G.729 Voice Compression Algorithm and its many annexes G.729 is used in wireless voic ...

  9. Java 部分排序算法

    . import java.io.*;import java.math.*;import java.util.*;public class Algr{ public static int array[ ...

  10. 删除.gitignore中的在version control中的文件

    如果有一个文件例如xyz在版本控制系统中,然后你发现这个文件不应该提交到git上,所以加了.gitignore文件并将其加入其中,但是git不会自动讲其从版本库中移除它.如果你只有一个文件,你可以使用 ...