gpt4 book ai didi

html - 如何在文本框中添加 2 个 fa-fa 图标

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

我们如何在单个输入文本框中添加两个 fa-fa 图标。当我在我的输入中应用我的代码时,它显示如下所示。 My Code previews

我错了。先生,请解决我的问题..

我的代码是:

<style>
.field-icon {
float: right;
margin-right: 6px;
margin-top: -20px;
position: relative;
z-index: 1;
cursor:pointer;
}
</style>
<div class="input_field">

<span>
<i class="fa fa-lock" aria-hidden="true"></i>
</span>
<input type="password" name="password" placeholder="Password" required/>

<span toggle="#password-field" class="fa fa-lg fa-eye field-icon toggle-password">
</span>

</div>

最佳答案

您可以将输入包装在 div 中并使用伪:

了解:https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-elements

使用下面的代码查看章程 onclick eye icon(使用 Jquery)

$("i").click(function() {
if($('.pass').attr('type')=='password' && $('.pass').val()!="")
$('.pass').attr('type', 'text')
else
$('.pass').attr('type', 'password')
})
    #text i:after{
font-family: 'FontAwesome';
position: relative;
left: -26px;
content: "\f06e";
}
#text:before{
font-family: 'FontAwesome';
position: relative;
right: -19px;
top: 1px;
content: "\f023";
}
#text input {
text-align: center;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- begin snippet: js hide: false console: true babel: false -->

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div id="text">
<input name="password" type="password" placeholder="password" class="pass">
<i></i>
</div>

关于html - 如何在文本框中添加 2 个 fa-fa 图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51277316/

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