我正在使用这个 jQuery 插件,名为“ jQuery 照明”
它工作正常,看起来很棒,但我还想要一件事!我只希望它点亮 5 秒钟。然后它应该停止发光。
但它看起来没有选择。是否可以在 5 秒后停止照明?
我的代码是这个
jQuery(document).ready(function () {
$(document).on('click', 'a#request', function() {
$(".box#input").val($(this).attr('value'));
var input = $(".box#input");
$(document).scrollTop(input .offset().top - 60);
input.focus();
input.illuminate({
'intensity': '0.3',
'color': '#e8f7e7',
'blink': 'true',
'blinkSpeed': '1000',
'outerGlow': 'true',
'outerGlowSize': '20px',
'outerGlowColor': '#228b22'
});
});
});