我有一种情况,必须编写内联CSS代码,并且要在锚点上应用悬停样式。
如何a:hover
在HTML样式属性内的内联CSS中使用?
例如,您不能在HTML电子邮件中可靠地使用CSS类。
我有一种情况,必须编写内联CSS代码,并且要在锚点上应用悬停样式。
如何a:hover
在HTML样式属性内的内联CSS中使用?
例如,您不能在HTML电子邮件中可靠地使用CSS类。
Answers:
简短的答案:您不能。
长答案:你不应该。
给它一个类名或一个ID,并使用样式表来应用样式。
:hover
是一个伪选择器,对于CSS而言,仅在样式表中具有含义。没有任何等效的内联样式(因为它没有定义选择标准)。
回应OP的评论:
有关动态添加CSS规则的良好脚本,请参见带有Javascript的Totally Pwn CSS。另请参阅更改样式表以获取有关该主题的一些理论。
另外,不要忘记,如果可以的话,您可以添加到外部样式表的链接。例如,
<script type="text/javascript">
var link = document.createElement("link");
link.setAttribute("rel","stylesheet");
link.setAttribute("href","http://wherever.com/yourstylesheet.css");
var head = document.getElementsByTagName("head")[0];
head.appendChild(link);
</script>
注意:以上假设存在头部。
style="{color:green;} :hover { color: red; }"
并且firefox设法将链接的颜色设置为绿色,但忽略了悬停。Chrome忽略了两者。继续测试将毫无意义。
您可以通过在onMouseOver
和onMouseOut
参数中使用JavaScript更改样式来获得相同的效果,但是如果您需要更改多个元素,效率会非常低:
<a href="abc.html"
onMouseOver="this.style.color='#0F0'"
onMouseOut="this.style.color='#00F'" >Text</a>
另外,我不确定是否this
可以在这种情况下使用。您可能需要使用进行切换document.getElementById('idForLink')
。
<div onMouseOver="this.style.backgroundColor='#F8F8F8'" onMouseOut="this.style.backgroundColor='#FFFFFF'"> ...
您可以在过去的某个时候完成。但是现在(根据同一标准的最新修订版,即候选推荐标准),您不能这样做。
<a href="http://www.w3.org/" style="{color: #900} :link {background: #ff0} :visited {background: #fff} :hover {outline: thin red solid} :active {background: #00f}">...</a>
,但它没有工作
我特别迟促成这一点,但是我很遗憾地看到没有人提出这一点,如果你真的需要内嵌代码,这是可以做到的。我需要一些悬停按钮,方法是这样的:
.hover-item {
background-color: #FFF;
}
.hover-item:hover {
background-color: inherit;
}
<a style="background-color: red;">
<div class="hover-item">
Content
</div>
</a
在这种情况下,内联代码:“ background-color:red;”。是悬停时的开关颜色,将所需的颜色放到那里,然后此解决方案就可以工作了。我意识到,就兼容性而言,这可能不是完美的解决方案,但是,如果绝对需要它,则可以使用。
您无法完全执行所描述的内容,因为它a:hover
是选择器的一部分,而不是CSS规则的一部分。样式表包含两个组件:
selector {rules}
内联样式只有规则;选择器隐式为当前元素。
选择器是一种表达性语言,它描述了一组条件以匹配类似XML的文档中的元素。
但是,您可以接近,因为从style
技术上讲,集合几乎可以在任何地方移动:
<html>
<style>
#uniqueid:hover {do:something;}
</style>
<a id="uniqueid">hello</a>
</html>
<html> </html>
标签下
a)添加内联样式
document.head.insertAdjacentHTML('beforeend', '<style>#mydiv:hover{color:red;}</style>');
b)或更难的方法-添加“ mouseover”
document.getElementById("mydiv").onmouseover= function(e){this.className += ' my-special-class'; };
document.getElementById("mydiv").onmouseleave= function(e){this.className = this.className.replace('my-special-class',''); };
注意:font-size
Java语言中的多字样式(即)是一起编写的:
element.style.fontSize="12px"
这是最好的代码示例:
<a
style="color:blue;text-decoration: underline;background: white;"
href="http://aashwin.com/index.php/education/library/"
onmouseover="this.style.color='#0F0'"
onmouseout="this.style.color='#00F'">
Library
</a>
主持人建议:保持关注点分离。
的HTML
<a
style="color:blue;text-decoration: underline;background: white;"
href="http://aashwin.com/index.php/education/library/"
class="lib-link">
Library
</a>
JS
const libLink = document.getElementsByClassName("lib-link")[0];
// The array 0 assumes there is only one of these links,
// you would have to loop or use event delegation for multiples
// but we won't go into that here
libLink.onmouseover = function () {
this.style.color='#0F0'
}
libLink.onmouseout = function () {
this.style.color='#00F'
}
当前的CSS迭代不支持内联伪类声明(尽管据我所知,它可能会在将来的版本中出现)。
就目前而言,最好的选择可能是直接在要设置样式的链接上方定义一个样式块:
<style type="text/css">
.myLinkClass:hover {text-decoration:underline;}
</style>
<a href="/foo" class="myLinkClass">Foo!</a>
<style>a:hover { }</style>
<a href="/">Go Home</a>
悬停是伪类,因此不能与样式属性一起应用。它是选择器的一部分。
你可以这样做。但不是内联样式。您可以使用onmouseover
和onmouseout
事件:
<div style="background: #333; padding: 10px; cursor: pointer"
onmouseover="this.style.backgroundColor='#555';" onmouseout="this.style.backgroundColor='#333';">
Hover on me!
</div>
根据您的评论,无论如何,您正在发送一个JavaScript文件。在JavaScript中进行过渡。jQuery的$.hover()
方法非常简单,其他所有JavaScript包装器也是如此。在直接的JavaScript中也不是很难。
我只是想出了一个不同的解决方案。
我的问题:我<a>
在某些幻灯片/主要内容查看器周围有一个<a>
标签,在页脚中也有一个标签。我希望它们在IE中位于相同的位置,因此onHover
即使它们不是链接,整个段落也要加下划线:幻灯片整体是一个链接。IE不知道区别。我的页脚中也有一些实际的链接,这些链接确实需要下划线和颜色更改onHover
。我以为我必须将样式与页脚标记内联以进行颜色更改,但是从上面的建议来看,这是不可能的。
解决方案:我为页脚链接提供了两个不同的类,而我的问题已解决。我能够onHover
在一类中进行颜色更改,使幻灯片onHover
没有颜色更改/下划线,并且仍然能够在页脚和幻灯片中同时具有外部HREFS!
现在还很晚,但是什么时候可以在HTML电子邮件中使用JavaScript?例如,在我目前工作的公司(与Abodee押韵),我们在大多数电子邮件营销活动中使用最低的公分母-只是不使用JavaScript。曾经 除非您指的是某种预处理。
如相关文章中所述:“ Lotus Notes,Mozilla Thunderbird,Outlook Express和Windows Live Mail似乎都支持某种JavaScript执行。
链接至该文章的来源:[ http://en.wikipedia.org/wiki/Comparison_of_e-mail_clients]
此外,悬停将如何转换为移动设备?这就是为什么我喜欢上面的答案:Long answer: you shouldn't.
如果有人对这个主题有更多的见解,请随时纠正我。谢谢。
因此,这并不是用户想要的东西,但是我发现这个问题在寻找答案,并提出了一些相关的问题。我有一堆重复的元素,它们中的选项卡需要新的颜色/悬停。我使用把手,这是解决方案的关键,但是其他模板语言也可以使用。
我定义了一些颜色,并将它们传递到每个元素的车把模板中。在模板的顶部,我定义了一个样式标签,并添加了自定义类和悬停颜色。
<style type="text/css">
.{{chart.type}}-tab-hover:hover {
background-color: {{chart.chartPrimaryHighlight}} !important;
}
</style>
然后,我在模板中使用了样式:
<span class="financial-aid-details-header-text {{chart.type}}-tab-hover">
Payouts
</span>
您可能不需要 !important
您可以编写各种类型的代码
首先我可以写这个
html
<a href="https://www.google.com/" onMouseOver="this.style.color='red'"
onMouseOut="this.style.color='blue'" class="one">Hello siraj</a>
的CSS
.one{
text-decoration: none;
}
你可以尝试另一种方式
html
<a href="https://www.google.com/" class="one">Hello siraj</a>
的CSS
.one{
text-decoration: none;
}
.one:hover{
color:blue;
}
.one:active{
color: red;
}
您也可以尝试在jquery中悬停
Java脚本
$(document).ready(function(){
$("p").hover(function(){
$(this).css("background-color", "yellow");
}, function(){
$(this).css("background-color", "pink");
});
});
html
<p>Hover the mouse pointer over this paragraph.</p>
在此代码中,您在jquery中具有三个功能,首先准备一个功能,该功能是jquery的基本功能,然后第二个功能是,当您将指针悬停在文本的颜色上时,该函数将具有悬停功能,然后下一个当您释放指向文本的指针时,它将是不同的颜色,这是第三个功能
Hacss现在有可能。
我必须避免使用JavaScript,但可以使用服务器端代码。
所以我生成了一个ID,创建了一个样式块,并生成了具有该ID的链接。是的,它是有效的HTML。
a {
text-decoration: none;
color: blue;
}
a:hover {
color: blue;
font-weight: bold;
}
<!-- some code in the interpreter you use, to generate the data-hover id -->
<style>
a[data-hover="rnd-id-123"] { color: green; }
a[data-hover="rnd-id-123"]:hover { color: red; }
</style>
<a data-hover="rnd-id-123">some link 1</a>
<br>
<!-- some code in the interpreter you use, to generate the data-hover id -->
<style>
a[data-hover="rnd-id-456"] { color: purple; }
a[data-hover="rnd-id-456"]:hover { color: orange; }
</style>
<a data-hover="rnd-id-456">some link 2</a>
您只能a:hover
在外部样式表中使用伪类。因此,我建议使用外部样式表。代码是:
a:hover {color:#FF00FF;} /* Mouse-over link */
style
标签即可。
我的问题是,我正在建立一个网站,该网站使用许多必须在悬停时由其他图像交换的图像图标(例如,蓝色图像在悬停时变为红色)。为此,我产生了以下解决方案:
.container div {
width: 100px;
height: 100px;
background-size: 100px 100px;
}
.container:hover .withoutHover {
display: none;
}
.container .withHover {
display: none;
}
.container:hover .withHover {
display: block;
}
<p>Hover the image to see it switch with the other. Note that I deliberately used inline CSS because I decided it was the easiest and clearest solution for my problem that uses more of these image pairs (with different URL's).
</p>
<div class=container>
<div class=withHover style="background-image: url('https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQrqRsWFJ3492s0t0NmPEcpTQYTqNnH188R606cLOHm8H2pUGlH')"></div>
<div class=withoutHover style="background-image: url('http://i.telegraph.co.uk/multimedia/archive/03523/Cat-Photo-Bombs-fa_3523609b.jpg')"></div>
</div>
我介绍了一个包含一对图像的容器。第一个是可见的,另一个是隐藏的(display:none)。悬停容器时,第一个变为隐藏(display:none),第二个再次出现(display:block)。