css3 线性渐变和径向渐变样式 分类: css3 button 按钮 渐变样式 2014-02-12 15:19 340人阅读 评论(0) 收藏

线性渐变:ie6以下不兼容

径向渐变:只支持firefox、Chrome和Safari


<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8" />
<title>Background Color</title>
<style type="text/css">
* {
	marigin:0;
	padding:0;
}
div{
	margin-bottom:20px;
	width:300px;
	height:100px;
}
.linear{/*线性渐变样式*/
	background-color: #1FA9F4; /* Old browsers */
	background-image: -moz-linear-gradient(top,#1FA9F4 0%,  #001C4E 100%); /* FF3.6+ */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1FA9F4), color-stop(100%,#001C4E)); /* Chrome,Safari4+ */
	background-image: -o-linear-gradient(top,#1FA9F4 0%, #001C4E 100%); /* Opera 11.10+ */
	background-image: -ms-linear-gradient(top,#1FA9F4 0%, #001C4E 100%); /* IE10+ */
	background-image: linear-gradient(to bottom,#1FA9F4 0%, #001C4E 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1FA9F4', endColorstr='#001C4E',GradientType=0 ); /* IE6-8 */
}
.circle{/*径向渐变样式*/
	background-color: #1FA9F4; /* Other browsers*/
	background-image:-moz-radial-gradient(center 80px 45deg, circle farthest-corner, #1FA9F4 0%, #001C4E 100%); /* FF3.6+ */
	background-image: -webkit-gradient(radial,50% 100%,10,50% 50%,90,from(rgba(31,169,244,1)),to(rgba(0,28,78,1))); /* Chrome,Safari4+ */
}
</style>
</head>

<body>
<div class="linear">
</div>
<div class="circle">
</div>
</body>
</html>

效果图:


版权声明:本文为博主原创文章,未经博主允许不得转载。

posted @ 2014-02-12 15:19  snow_finland  阅读(311)  评论(0编辑  收藏  举报