现在的位置: 首页 > 综合 > 正文

CSS3 属性介绍

2013年04月25日 ⁄ 综合 ⁄ 共 245字 ⁄ 字号 评论关闭

CSS3 的transition属性

<style type="text/css">
a {
	color:#000;
	font-weight:bold;
	font-size:16px;
	text-decoration:none;
}
a:hover {
	color:#f60;
	-webkit-transition:all .5s ease;
	-moz-transition:all .5s ease
}
</style>
</head>
<body>
<a href="">afdsfsdfsdfsdf</a>
</body>
</html>

抱歉!评论已关闭.