在CSS中如何设置一个按钮鼠标划过变颜色。

html-css028

在CSS中如何设置一个按钮鼠标划过变颜色。,第1张

需要准备的材料分别有:电脑、浏览器、html编辑器。

1、首先,打开html编辑器,新建html文件,例如:index.html。

2、在index.html中的<style>标签中,输入css代码:button {background-color: #00a7d0}

button:hover {background-color: #ff7701}。

3、浏览器运行index.html页面,此时显示出了蓝色背景颜色的按钮。

4、将鼠标移入按钮,此时按钮的背景颜色变成了橙色。

代码:

<script src="jquery.js"></script>

<style type="text/css">

a.qq{background:url(图标地址自己加)}

...

.hover{filter:gray}

</style>

<div class="xxx">

<a href="" class="qq"></a>

<a href="" class="sina"></a>

<a href="" class="qqweibo"></a>

<a href="" class="rr"></a>

<a href="" class="kx"></a>

</div>

<script type="text/javascript">

$(document).ready(function(){

$(".xxx a").hover(

function () {

$(this).addClass("hover")

},

function () {

$(this).removeClass("hover")

}

)

})

</script>