我正在使用以下代码(我在其他地方找到并尝试修改以满足我的需要)来创建一个从右侧滑到我的屏幕上的 div。当我单击而不是悬停时,我将如何让它滑出?在此先感谢您的帮助。
jQuery(function($) {
$(document).ready(function() {
$('#introbutton').hover(function() {
$('#intro-container').stop(true, false).animate({
'left': '0px'
}, 900);
}, function() {
jQuery.noConflict();
});
jQuery('#introbutton').hover(function() {
// Do nothing
}, function() {
jQuery.noConflict();
jQuery('#intro-container').animate({
left: '100%'
}, 800);
});
});
});