<a class="xvideo-thumbnail-mask hide" target="_blank" href="http://127.0.0.1">2222222<span class="xyvideo-icon xyvideo-icon-video"></span></a>
光标移动到 这个A链接时,a的class值变成
<a class="xvideo-thumbnail-mask" target="_blank" href="http://127.0.0.1">2222222<span class="xyvideo-icon xyvideo-icon-video"></span></a>
,就是 class里面的 hide 去掉了
就拿这个例子,JS 该怎么去写?
12 个解决方案
#1
#2
hover 我也想过, 不过a标签里的 span 后面 还要做 跟 a 标签一样的 操作,所以 hover 不合适用,只能用JS 来改变
<script>
function changeBackColor(obj)
{
for(var i=1;i<=5;i++)
{
document.getElementById("w"+i).className="xvideo-thumbnail-mask";
}
document.getElementById(obj).className="xvideo-thumbnail-mask hide";
}
</script>
但 a标签里 做 id="w1" class=“xvideo-thumbnail-mask hide” 失败 仍然 光标移动到 a 链接时 class的值不会变成 xvideo-thumbnail-mask
#3
$(".xvideo-thumbnail-mask").hover(function(){
if($(".xvideo-thumbnail-mask").hasClass("hide")){
$(".xvideo-thumbnail-mask").removeClass("hide");
}else{
$(".xvideo-thumbnail-mask").addClass("hide");
}
});
$(".xvideo-thumbnail-mask")这个你自己换成对应的吧 jquery写的
#4
#5
$(function(){
//XXXX
});
需要让那段代码在页面加载之后在运行
#6
#7
怎么不适用
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title> 页面名称 </title>
<style type="text/css">
a.xvideo-thumbnail-mask:hover {
background-color: #f00;
}
a.xvideo-thumbnail-mask:hover span {
background-color: #ff0;
}
</style>
</head>
<body>
<a class="xvideo-thumbnail-mask" target="_blank" href="http://127.0.0.1">2222222<span class="xyvideo-icon xyvideo-icon-video">33333333333333</span></a>
</body>
</html>
#8
已经添加了,不过审核元素 还是没有效果。。 要不劳驾您 花点时间 帮写一下把
才看见 需要引入jquery.js
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
#9
已经添加了,不过审核元素 还是没有效果。。 要不劳驾您 花点时间 帮写一下把
<!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>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script>
$(function(){
$(".xvideo-thumbnail-mask hide").hover(function(){
if($(".xvideo-thumbnail-mask hide").hasClass("hide")){
$(".xvideo-thumbnail-mask hide").removeClass("hide");
}else{
$(".xvideo-thumbnail-mask").addClass("hide");
}
});
});
</script>
</head>
<body>
<a class="xvideo-thumbnail-mask hide" target="_blank" href="http://127.0.0.1">22222222222222222222222<span class="xyvideo-icon xyvideo-icon-video"></span></a>
</body>
</html>
#10
单单 背景 以及文字 那就简单了,用你说的 hover就行了, 其中span 还要涉及到图形显示的,光标 不移动到该处,就不显示图片,
a 链接 和 span 都要跟随变化。。
用JS 能写出 a的来就能好处理 span的图形问题了
#11
a:hove{
写光标移动上去显示的样式
}
写光标移动上去显示的样式
}
#12
卧槽,这个的实现方式太多了,一眼就能看出来好几个
1.
mouseEnter e.removeClass('hide')
mouseOut:e.addClass('hide')
2. hide做成xvideo-thumbnail-mask伪类
3.span:hover hide样式覆盖
4.div:hover hide样式覆盖
5.div hover =>remove or add class
6......
1.
mouseEnter e.removeClass('hide')
mouseOut:e.addClass('hide')
2. hide做成xvideo-thumbnail-mask伪类
3.span:hover hide样式覆盖
4.div:hover hide样式覆盖
5.div hover =>remove or add class
6......
#1
#2
换个思路,xvideo-thumbnail-mask添加hide样式的值,然后a添加hover伪类,覆盖掉hide的值
hover 我也想过, 不过a标签里的 span 后面 还要做 跟 a 标签一样的 操作,所以 hover 不合适用,只能用JS 来改变
<script>
function changeBackColor(obj)
{
for(var i=1;i<=5;i++)
{
document.getElementById("w"+i).className="xvideo-thumbnail-mask";
}
document.getElementById(obj).className="xvideo-thumbnail-mask hide";
}
</script>
但 a标签里 做 id="w1" class=“xvideo-thumbnail-mask hide” 失败 仍然 光标移动到 a 链接时 class的值不会变成 xvideo-thumbnail-mask
#3
$(".xvideo-thumbnail-mask").hover(function(){
if($(".xvideo-thumbnail-mask").hasClass("hide")){
$(".xvideo-thumbnail-mask").removeClass("hide");
}else{
$(".xvideo-thumbnail-mask").addClass("hide");
}
});
$(".xvideo-thumbnail-mask")这个你自己换成对应的吧 jquery写的
#4
<!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>
<script>
$(".xvideo-thumbnail-mask hide").hover(function(){
if($(".xvideo-thumbnail-mask hide").hasClass("hide")){
$(".xvideo-thumbnail-mask hide").removeClass("hide");
}else{
$(".xvideo-thumbnail-mask").addClass("hide");
}
});
</script>
</head>
<body>
<a class="xvideo-thumbnail-mask hide" target="_blank" href="http://127.0.0.1">22222222222222222222222<span class="xyvideo-icon xyvideo-icon-video"></span></a>
</body>
</html>
光标移动的 到 A链接时 移除 hide , 光标离开 A链接时 自动添加回 hide
我这样写 测试时 没效果呢,是我写错了吗
#5
$(function(){
//XXXX
});
需要让那段代码在页面加载之后在运行
#6
已经添加了,不过审核元素 还是没有效果。。 要不劳驾您 花点时间 帮写一下把
#7
怎么不适用
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title> 页面名称 </title>
<style type="text/css">
a.xvideo-thumbnail-mask:hover {
background-color: #f00;
}
a.xvideo-thumbnail-mask:hover span {
background-color: #ff0;
}
</style>
</head>
<body>
<a class="xvideo-thumbnail-mask" target="_blank" href="http://127.0.0.1">2222222<span class="xyvideo-icon xyvideo-icon-video">33333333333333</span></a>
</body>
</html>
#8
已经添加了,不过审核元素 还是没有效果。。 要不劳驾您 花点时间 帮写一下把
才看见 需要引入jquery.js
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
#9
已经添加了,不过审核元素 还是没有效果。。 要不劳驾您 花点时间 帮写一下把
<!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>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script>
$(function(){
$(".xvideo-thumbnail-mask hide").hover(function(){
if($(".xvideo-thumbnail-mask hide").hasClass("hide")){
$(".xvideo-thumbnail-mask hide").removeClass("hide");
}else{
$(".xvideo-thumbnail-mask").addClass("hide");
}
});
});
</script>
</head>
<body>
<a class="xvideo-thumbnail-mask hide" target="_blank" href="http://127.0.0.1">22222222222222222222222<span class="xyvideo-icon xyvideo-icon-video"></span></a>
</body>
</html>
#10
单单 背景 以及文字 那就简单了,用你说的 hover就行了, 其中span 还要涉及到图形显示的,光标 不移动到该处,就不显示图片,
a 链接 和 span 都要跟随变化。。
用JS 能写出 a的来就能好处理 span的图形问题了
#11
a:hove{
写光标移动上去显示的样式
}
写光标移动上去显示的样式
}
#12
卧槽,这个的实现方式太多了,一眼就能看出来好几个
1.
mouseEnter e.removeClass('hide')
mouseOut:e.addClass('hide')
2. hide做成xvideo-thumbnail-mask伪类
3.span:hover hide样式覆盖
4.div:hover hide样式覆盖
5.div hover =>remove or add class
6......
1.
mouseEnter e.removeClass('hide')
mouseOut:e.addClass('hide')
2. hide做成xvideo-thumbnail-mask伪类
3.span:hover hide样式覆盖
4.div:hover hide样式覆盖
5.div hover =>remove or add class
6......