纯css打造便签效果
代码语言:html
所属分类:布局界面
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>BFW NEW PAGE</title> <style> * { margin: 0; padding: 0; } body { font-family: arial,sans-serif; font-size: 100%; margin: 3em; background: #666; color: #fff; } h2,p { font-size: 100%; font-weight: normal; } ul,li { list-style: none; } ul { overflow: hidden; padding: 3em; } ul li a { text-decoration: none; color: #000; background: #ffc; display: block; height: 10em; width: 10em; padding: 1em; } ul li { margin: 1em; float: left; } ul li h2 { font-size: 140%; font-weight: bold; padding-bottom: 10px; } ul li p { font-family: "Reenie Beanie" ,arial,sans-serif,微软雅黑; font-size: 110%; } ul li a { text-decoration: none; color: #000; background: #ffc; display: block; height: 10em; width: 10em; padding: 1em; /* Firefox */ -moz-box-shadow: 5px 5px 7px rgba(33,33,33,1); /* Safari+Chrome */ -webkit-box-shadow: 5px 5px 7px rgba(33,33,33,.7); /* Opera */ box-shadow: 5px 5px 7px rgba(33,33,33,.7); } ul li a { -webkit-transform: rotate(-6deg); -o-transform: rotate(-6deg); -moz-transform: rotate(-6deg); } ul li:nth-child(even) a { -o-transform: rotate(4deg); -webkit-transform: rotate(4deg); -moz-transform: rotate(4deg); position: relative; top: 5px; } ul li:nth-child(3n) a { -o-transform: rotate(-3deg); -webkit-transform: rotate(-3deg); -moz-transform: rotate.........完整代码请登录后点击上方下载按钮下载查看
网友评论0