如何在悬停时使用 CSS 将角度字符添加到此按钮的文本中?
How are angle characters being added to this button's text with CSS on hover?
我在 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: '[=11=]bb';
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>
“魔法线”是两条线:
.button span:after {
content: '[=10=]bb';
HTML 代码 00bb 是字符 »。
CSS 伪元素规则必须有内容 属性 否则它们根本不会出现在页面中。在大多数情况下,它是一个空字符串,因为它不包含文本并且以其他方式设置了样式。在这种情况下,它实际上包含一个 HTML 实体代码。
.button span:after {
content: '[=10=]bb'; /* <-- Here's your huckleberry. */
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
要在 HTML 中直接使用该字符,您需要使用其名称和符号:»
我在 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: '[=11=]bb';
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>
“魔法线”是两条线:
.button span:after {
content: '[=10=]bb';
HTML 代码 00bb 是字符 »。
CSS 伪元素规则必须有内容 属性 否则它们根本不会出现在页面中。在大多数情况下,它是一个空字符串,因为它不包含文本并且以其他方式设置了样式。在这种情况下,它实际上包含一个 HTML 实体代码。
.button span:after {
content: '[=10=]bb'; /* <-- Here's your huckleberry. */
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
要在 HTML 中直接使用该字符,您需要使用其名称和符号:»