CSS,JS看过来,按钮的问题
我想鼠标放上去时按钮背景变色,还有边框要变色(我不知道怎么弄)。帮我改下文字在按钮中要处在中间的位置。。<style>.p1{font-weight:bold;font-...
我想鼠标放上去时按钮背景变色,还有边框要变色(我不知道怎么弄)。帮我改下文字在按钮中要处在中间的位置。。
<style>
.p1{font-weight:bold;font-family:微软雅黑;font-size:13pt;color:white;background-color:#08affd;width:60px;height:30px;border:2px solid #76cdf6}
</style>
<script>
<!--
function change(color){
var el=event.srcElement
if (el.tagName=="INPUT" && el.type=="button")
event.srcElement.style.backgroundColor=color
}
function jumpto2(url){
window.location=url
}
//-->
</script>
<input type="button" value="评论 " class="p1" onMouseOut=this.style.background="#18fd88"
onMouseover="this.style.background='#08affd'"
onClick="jumpto2('http://sina.com.cn')">
</form> 展开
<style>
.p1{font-weight:bold;font-family:微软雅黑;font-size:13pt;color:white;background-color:#08affd;width:60px;height:30px;border:2px solid #76cdf6}
</style>
<script>
<!--
function change(color){
var el=event.srcElement
if (el.tagName=="INPUT" && el.type=="button")
event.srcElement.style.backgroundColor=color
}
function jumpto2(url){
window.location=url
}
//-->
</script>
<input type="button" value="评论 " class="p1" onMouseOut=this.style.background="#18fd88"
onMouseover="this.style.background='#08affd'"
onClick="jumpto2('http://sina.com.cn')">
</form> 展开
展开全部
需要这么麻烦吗?下面是我随便写的一个,如果你非要用onmousemove和onmouseout来实现的话继续追问,我再帮你写一个!!!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>按钮</title>
<style type="text/css">
*{
margin:0;
padding:0;
}
a{
text-decoration:none;
display:block;
width:110px;
height:34px;
line-height:34px;
text-align:center;
background:#da251a;
color:#fff;
border:1px solid #9a0b02;
}
a:hover{
background:#ff6600;
border:1px solid #000;
}
</style>
</head>
<body>
<a href="http://www.baidu.com/" title="">点击</a>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询