悬停时如何使用 CSS 将角度字符添加到此按钮的文本中?
Posted
技术标签:
【中文标题】悬停时如何使用 CSS 将角度字符添加到此按钮的文本中?【英文标题】:How are angle characters being added to this button's text with CSS on hover? 【发布时间】:2021-10-14 03:00:26 【问题描述】:我在W3Schools 上发现了以下代码。它具有悬停效果;当您将鼠标悬停在按钮上时,它会变为 Hover>>,并且最后两个字符 >> 会在悬停时自动添加。我没有看到任何 html 代码。它从哪里来的?它在 HTML/CSS 中有单独的代码吗?我的意思是,>> 没有“文本”,而“悬停”有 文本
<!DOCTYPE html>
<html>
<head>
<style>
.button
display: inline-block;
border-radius: 4px;
background-color: #f4511e;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 28px;
padding: 20px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
.button span
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
.button span:after
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
.button:hover span
padding-right: 25px;
.button:hover span:after
opacity: 1;
right: 0;
</style>
</head>
<body>
<button class="button" style="vertical-align:middle"><span>Hover </span></button>
</body>
</html>
【问题讨论】:
【参考方案1】:“魔法线”是两条线:
.button span:after
content: '\00bb';
HTML 代码 00bb 是字符 »。
【讨论】:
【参考方案2】:伪元素的 CSS 规则必须具有 content 属性,否则它们根本不会出现在页面中。在大多数情况下,它是一个空字符串,因为它不包含文本并且以其他方式设置样式。在这种情况下,它实际上包含一个 HTML 实体代码。
.button span:after
content: '\00bb'; /* <-- Here's your huckleberry. */
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
Here's the list
要在 HTML 中直接使用该字符,您可以在其名称中使用与符号:&raquo;
【讨论】:
谢谢!我不能把 >> 放在 HTML 的正文中吗? 我不明白你的问题。你打算让它像现在一样显示和隐藏吗?以上是关于悬停时如何使用 CSS 将角度字符添加到此按钮的文本中?的主要内容,如果未能解决你的问题,请参考以下文章
当您使用 javascript 或 jquery 将鼠标悬停时,如何使图像或按钮发光?