如何利用背景图片制作漂亮的按钮_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:36:23
Original
1718 people have browsed it

如何利用背景图片制作漂亮的按钮:
建议:尽可能的手写代码,可以有效的提高学习效率和深度。
按钮的应用可以说在网站中无处不在,不过默认的按钮并不美观,如果使用图片作为按钮的背景能够极大的提高按钮的美观度,下面就简单介绍一下如何使用背景图片制作漂亮的按钮,并且当鼠标放在按钮伤上或者离开时候会切换不同的背景图片。
代码实例如下:

<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css">.bt{  width:67px;  height:23px;  line-height:23px;  background:url(mytest/demo/bt.jpg) no-repeat -4px -4px;  border:0px;}.over{  width:67px;  height:23px;  line-height:23px;  background:url(mytest/demo/bt.jpg) no-repeat -4px -30px;  border:0px;}</style></head><body><input type="submit" value="登录" onMouseOver="this.className='over'" onMouseOut="this.className='bt'" class="bt"></body></html>
Copy after login

以上代码实现了背景图片美化按钮,并且当鼠标放在按钮上和鼠标离开按钮时,能够切换背景图片。不过这里用到了将背景图片放在一张图片上的技术,如果大家还不够熟悉,可以点击相关链接了解相关内容。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template