CSS 鼠标经过边框变色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 鼠标经过边框变色相关的知识,希望对你有一定的参考价值。

CSS中 鼠标经过边框变色那个代码谁能告诉我下。!
http://video.naver.com/VideoBestList.nhn 参考网站

哪位大侠帮一下~

鼠标经过改变边框颜色可以直接css的:hover伪类,然后定义border样式就是了。如下示例代码:

acolor:#000;border:1px solid #000; /* 默认的样式 */
a:hoverborder-color:#ccc; /* 鼠标经过时的样式 */


鼠标经过时将边框颜色变为了灰色。

参考技术A 你指的是图片的边框吧
a:hover imgborder: 2px solid red!important;

不加img就是所有的边框
a:hoverborder: 2px/*边框粗细*/ solid/*边框样式*/ red/*边框颜色*/!important;本回答被提问者和网友采纳
参考技术B 这个网站的边框换色效果很简单。。。直接用a:hoverborder:...就可以实现。。。。 参考技术C 给图片加A标签 定义a:hoverborder:red; 就可以实现

JS调用CSS样式表问题(功能鼠标经过文本域是文本域边框颜色发生变化『给出能够实现功能的源码』)

JS调用CSS样式表问题(功能鼠标经过文本域是文本域边框颜色发生变化『给出能够实现功能的源码』)
<!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>
<title>无标题文档</title>
<script type="text/javascript">
function dod()
document.getElementById("testId").className="testClass"
</script>
<style type="text/css">
.testClass border:5px solid #000;
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

</head>

<body>
<div >
<input name="" type="text" onmouseover="dod"/>
</div>

<div id="testId">
abc
</div>
</body>
</html>

参考技术A 用CSS:
input:hover border: 5px solid #000;

用Javascript:
<input name="" type="text" onmouseover="this.style.border = '5px solid #000';" onmouseout="this.removeAttribute('style');" />追问

这样还要定义javascript呀! 没看见有捱。

追答


把这一行改为

本回答被提问者采纳
参考技术B <input type="text" size="10" id="text1" class="text1" onmouseover="javascript:textover('tover');" />
<style type="text/css">
.text1
background:#fff;
border:solid 1px #ccc;

.tover
background:#fff;
border:solid 1px #f00;

</style>
楼上的这么改下就行了。要注意CSS的优先权
参考技术C <input type="text" size="10" id="text1" onmouseover="javascript:textover('tover');" />
<style type="text/css">
#text1
background:#fff;
border:solid 1px #ccc;



.tover
background:#fff;
border:solid 1px #f00;


</style>
<script language="javascript">
function textover(cname)
var m
m=document.getElementById("text1")
m.classname=cname


</script>追问

你用这个实现了“鼠标经过文本域是文本域边框颜色发生变化”?

追答

这个没问题,测试过了

.tover
border:#FF0000 solid 1px;
display:block;



function fun(test)

var object= document.getElementById(test);
object.setAttribute("className","tover");



参考技术D 建议你用jquery,,实现你的要求很简单的。。。追问

a:hover可以实现,不过在IE8.0下出现了兼容性问题,郁闷呀!

追答

为什么一定要用a:hover呢,你不会变个方法来实现,程序是死的认识活的,活人还能让尿憋死啊!!要学会变通@

追问

那你能够解决这个问题不? 能解决请写出源码

追答

首先引入jquery文件。。。

$(function()
$("#mouse").mouseover(function()$(this).addClass("sss"));
$("#mouse").mouseout(function()$(this).removeClass("sss"));
);

以上是关于CSS 鼠标经过边框变色的主要内容,如果未能解决你的问题,请参考以下文章

html鼠标悬停图片边框出现

excel鼠标点击单元格,单元格黑色框框没有

如何用css使边框颜色渐变

div+css 边框渐变色怎么做啊?

如何用css使边框颜色渐变

用css的方法达到边框颜色渐变,最好支持chrome