gpt4 book ai didi

html - 如何在每个 Font Awesome 图标下放置文本?

转载 作者:行者123 更新时间:2023-11-28 14:40:28 25 4
gpt4 key购买 nike

自从过去 3 天以来,我一直在尝试制作简单的东西,我查看了很多主题并应用了相同的代码,但没有一个有效。

I have 3 icons 1-call 2-services 3-ticket one more thing please , tell me if there is UI html and css builder inestead of coding i realy hate it from this week . the code below is not mine, its from youtube .

我想用文本标记每个图标,并且应该在图标下面而不是旁边。我对 html 和 css 还很陌生。

body{
padding: 0;
margin: 0;

}


.middle{
position: absolute;
top: 70%;
transform: translateY(-50%);
width: 100%;
text-align: center;
}
.btn{
display: inline-block;
width: 90px;
height: 90px;
background: #f1f1f1;
margin: 10px;
border-radius: 100%;
box-shadow: 0 5px 15px -5px #00000070;
color: #1;
overflow: hidden;
position: relative;
}
.btn i{
line-height: 90px;
font-size: 26px;
transition: 0.2s linear;
}
.btn:hover i{
transform: scale(1.3);
color: #f1f1f1;
}
.btn::before{
content: "";
position: absolute;
width: 120%;
height: 120%;
background: #fbc531;
transform: rotate(45deg);
left: -110%;
top: 90%;
}
.btn:hover::before{
animation: aaa 0.7s 1;
top: -10%;
left: -10%;
}
@keyframes aaa {
0%{
left: -110%;
top: 90%;
}50%{
left: 10%;
top: -30%;
}100%{
top: -10%;
left: -10%;
}
}
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">

<title></title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css">
</head>



<div class="middle">
<a class="btn" href="">
<i class="fas fa-headset">call</i>
</a>
<a class="btn" href="">
<i class="fas fa-hands-helping">services</i>
</a>
<a class="btn" href="">
<i class="fas fa-ticket-alt">ticket</i>
</a>

</a>
</div>
</body>
</html>

最佳答案

如果你愿意,你可以把它作为标题放在图标标签中,比如 title="call"。当您将鼠标悬停在该图标上时,它会显示。或者别的你可以像按钮一样完成它

  <button>Call <i class="fa fa-headset"></i> </button>

关于html - 如何在每个 Font Awesome 图标下放置文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53034192/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com