gpt4 book ai didi

javascript - Jquery 事件不工作

转载 作者:太空宇宙 更新时间:2023-11-03 22:57:20 25 4
gpt4 key购买 nike

我制作了这个 Jquery 事件并想在我的按钮上应用不透明度,但它不起作用。请帮忙!

<button type="button" id="btn-opacity" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Sign-Up
</button>
button#btn-opacity {
background-color: aqua;
border: hidden;
}
$(document).ready(function() {
$('#btn-opacity').mouseenter(function(event) {
/* Act on the event */
$(this).fadeTo('slow', 0.3);
});
});

最佳答案

这是您要查找的内容:

   $(document).ready(function() {
$('#btn-opacity').mouseenter(function(event) {
/* Act on the event */
$(this).css('opacity', 0.3);
});
$('#btn-opacity').mouseleave(function(event) {
/* Act on the event */
$(this).css('opacity', 1);
});
});
button#btn-opacity {
background-color: aqua;
border: hidden;
}
button {
transition: all .3s ease-in;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<button type="button" id="btn-opacity" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Sign-Up
</button>

关于javascript - Jquery 事件不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37896100/

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