css实现照片墙点击合成大图效果代码
代码语言:html
所属分类:画廊相册
代码描述:css实现照片墙点击合成大图效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>相册</title>
<style type="text/css">
* {
margin: 0;
padding: 0
}
body {
background-color: #e8e3da;
}
ul {
list-style: none
}
#wrap {
width: 980px;
height: 500px;
}
#wrap li {
position: absolute;
left: 0;
top: 0;
transition: transform 1500ms ease-out;
background-color: white;
}
.box {
width: 100%;
height: 100%;
background-size: cover;
transition: transform 1500ms ease-out;
}
.center {
margin: auto;
positio.........完整代码请登录后点击上方下载按钮下载查看
网友评论0