0

af http://dl.dropboxusercontent.com/u/62862049/Screenshots/pf.png

我设法部分复制了它:我有一个圆形的底部,实心边框,纯色背景。我被困在效果上:顶部的高光 - 背景颜色不均匀的方式 - 文本和底部本身似乎有阴影。所以,我到目前为止使用过:border, border-radius, background-color. 那些是怎么做的?

4

1 回答 1

3

类似的东西:http: //jsfiddle.net/rEHSL/

看看 CSS3box-shadow属性。

背景渐变的 CSS 来自 - http://www.colorzilla.com/gradient-editor/

CSS:

#test { color:#fff; font-size:18px; text-align:center; width:300px; height:100px; background:orange;


/* Inner and Outer shadows */
-webkit-box-shadow:  inset 0px 0px 2px 2px rgba(255, 255, 255, 0.8),
0px 0px 2px 2px rgba(0, 0, 0, 0.2);

box-shadow:  inset 0px 0px 2px 2px rgba(255, 255, 255, 0.8),
0px 0px 2px 2px rgba(0, 0, 0, 0.2);

/* rounded corners */
-webkit-border-radius: 15px;
border-radius: 15px;

/* graident bg */
background: rgb(255,175,75); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(255,175,75,1) 0%, rgba(255,146,10,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,175,75,1)), color-stop(100%,rgba(255,146,10,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(255,175,75,1) 0%,rgba(255,146,10,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(255,175,75,1) 0%,rgba(255,146,10,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(255,175,75,1) 0%,rgba(255,146,10,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(255,175,75,1) 0%,rgba(255,146,10,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffaf4b', endColorstr='#ff920a',GradientType=0 ); /* IE6-9 */
于 2013-06-12T12:31:54.150 回答