第一:css3下载字体,代码如下
@font-face {
font-family: '自己命名字体名字'
src: url('字体路径')
src: url('FileName.eot?#iefix') format('embedded-opentype'), /*其它格式*/url('FileName.woff') format('woff'),
url('FileName.ttf') format('truetype'),
url('FileName.svg#FontName') format('svg')
font-style: normal
font-weight: normal/*设置默认样式*/
}
.aa{font-family:"自己命名字体名字"}
不兼容ie8及以下浏览器
第二:切png图片
<style type="text/css">.aa{ width:200pxheight:44pxborder:0background-image:url(img1.png)}
.aa:active{ background-image:url(img2.png)}
</style>
<input type="button" class="aa" value=""/>
IE6需要另外插一张类库