用div+css如何设计出如下图的效果?
发布网友
发布时间:2022-05-14 06:39
我来回答
共3个回答
懂视网
时间:2022-05-14 11:00
这些图片都是用一个DIV绘制出来的,其实原理并不复杂。
这些图片都是由CSS绘制出来的,通过background-image叠加实现,
如蘑菇头的实现,通过 radial-gradient 径向渐变 , linear-gradient 线性渐变相互叠加实现,如:
p {
width: 170px;
height: 140px;
background-image:
radial-gradient(circle at 50% 120%, rgba(0,0,0,0.7) 23%, rgba(0,0,0,0) 48%),
linear-gradient(30deg, rgba(0,0,0,0.4) 10%, rgba(0,0,0,0) 20%),
radial-gradient(circle at 50% 33%, #f8f6f7 32%, rgba(255,255,255,0) 32%),
radial-gradient(circle at -13% 55%, #f8f6f7 20%, rgba(255,255,255,0) 20%),
radial-gradient(circle at 113% 55%, #f8f6f7 20%, rgba(255,255,255,0) 20%),
linear-gradient(to bottom, #ef0015 20%, #b2000c 100%);
border-radius: 140px 140px 80px 80px;
}
同时有前后遮挡关系的通过:before和:after伪元素的background-image来实现。
在线演示:http://jsfiddle.net/ourjs/ed0ayybo/
PS: 此种手法对并不完全支持旧版IE
原文地址:http://a.singlep.com/?utm_source=ourjs.com
热心网友
时间:2022-05-14 08:08
先用div做一个大的边框我们叫他为a 此div左右的边框颜色 和 粗细可以自己调
然后做一个div我们叫他为b 字体为蓝色 字号自己选 高度自己调 宽度比a 小三十 外填充为
0px 15px;
然后做一个div我们叫他为c 字体为黑 字号自己选 行高为20px 高度设定为auto 宽度比a 小三十 外填充为0px 15px;
最后做一个div我们叫他为d 让他的内容方向向右 高度自定 宽度比a小三十 外填充为0px 15px; 加下划线
最后把b c d 都放到a中就行了
热心网友
时间:2022-05-14 09:26
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--
body,td,th { font-family: Arial, Helvetica, sans-serif; font-size: 12px; }
a:link { color: #006FBF; text-decoration: none; }
a:visited { text-decoration: none; color: #006FBF; }
a:hover { text-decoration: none; color: #FF0000; }
a:active { text-decoration: none; color: #FF0000; }
.list { width: 400px; }
.list li { border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #CCCCCC; list-style-type: none; padding-bottom: 8px; display: block; }
.list li h3 { line-height: 26px; margin: 0px; padding: 0px; display: block; }
.list li p { margin: 0px; padding-top: 5px; padding-bottom: 5px; line-height: 20px; display: block; }
.list li span { text-align: right; display: block; }
-->
</style>
</head>
<body>
<ul class="list">
<li>
<h3><a href="#">无标题文档</a></h3>
<p>无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档</p>
<span>无标题文档 无标题文档</span>
</li>
<li>
<h3><a href="#">无标题文档</a></h3>
<p>无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档</p>
<span>无标题文档 无标题文档</span>
</li>
<li>
<h3><a href="#">无标题文档</a></h3>
<p>无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档无标题文档</p>
<span>无标题文档 无标题文档</span>
</li>
</ul>
</body>
</html>
时间不允许,简单意思下。