【发布时间】:2018-01-30 11:12:39
【问题描述】:
您好,我想在这个 jquery 上使用淡入效果,并让它在点击时出现在触摸设备上。
$('#one').hover(function() {
$('#one_text').css('background-color', '#fdb913');
}, function() {
// on mouseout, reset the background colour
$('#one_text').css('background-color', '');
});
【问题讨论】: