gpt4 book ai didi

jquery - 如何通过按钮使用 Font Awesome?

转载 作者:太空宇宙 更新时间:2023-11-04 02:31:35 25 4
gpt4 key购买 nike

我想使用切换按钮并找到一个 perfect solution .我 adapted the code使用 Font Awesome图标:

<a id="button1" title="button1"><i class="fa fa-bluetooth fa-5x"></i></a>
<a id="button2" title="button2"><span id="mytext">large text</span></a>

结果是图标和纯文本都没有展开按钮:

enter image description here

如何将按钮的大小自动调整为底层文本的大小?

最佳答案

为 anchor 添加显示属性。

$(document).ready(function() {
$('a#button1').click(function() {
$(this).toggleClass("down");
});
});
a {
background: #ccc;
cursor: pointer;
border-top: solid 2px #eaeaea;
border-left: solid 2px #eaeaea;
border-bottom: solid 2px #777;
border-right: solid 2px #777;
padding: 5px 5px;
display: inline-block; /* add display property */
}
a.down {
background: #bbb;
border-top: solid 2px #777;
border-left: solid 2px #777;
border-bottom: solid 2px #eaeaea;
border-right: solid 2px #eaeaea;
}
#mytext {
font-size: 3em; /* better you use em's rather than pt's */
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<a id="button1" title="button1"><i class="fa fa-bluetooth fa-5x"></i></a>
<a id="button2" title="button2"><span id="mytext">large text</span></a>

关于jquery - 如何通过按钮使用 Font Awesome?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36429094/

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