Worksheet-Problem
输入文字上时,我想要.button-add
显示,用户可以点击它。当用户盘旋时
远离Worksheet-Problem
输入文字,我想要.button-add
逐渐消失。 .button-bullet
上时,我想要.button-bullet
消失,.button-remove
淡出它的位置我觉得这应该很简单。我可能正在使用不正确的jQuery函数。
.button-add
一直闪烁,.button-remove
fadingIn和.button-bullet
消失之间的协调失败。
我将display
和.button-add
的{{1}}设置为.button-remove
。然后我使用none
和display
切换了.button-bullet
以及display
fadeIn()
。
HTML 的
fadeOut()
的jQuery
.button-add, .button-remove{
display: none;
}
答案 0 :(得分:2)
试试这个:
$(document).ready(function(){
$("input[type='text'][name='Worksheet-Problem']").closest('.row').hover(function() {
$(".button-add").fadeToggle(300);
})
$(".button-bullet").closest('.input-group-btn').hover(function(){
$('.button-bullet').toggle();
$(".button-remove").toggle();
})
$(".button-add").click(function(){
console.log("Add-Button pressed");
})
$(".button-remove").click(function(){
console.log("Remove-Button pressed");
})
})