我正在使用简单的jQuery Event Calendar脚本。因为我对jQuery不好。但是,当您单击带有事件的某一天时,事件信息会下降。我相信我找到了这个功能的正确代码。
function displayEvent() {
$('tbody.event-calendar td').on('click', function(e) {
$('.day-event').slideUp('fast');
var monthEvent = $(this).attr('date-month');
var dayEvent = $(this).text();
$('.day-event[date-month="' + monthEvent + '"][date-day="' + dayEvent + '"]').slideDown('fast');
});
};
/**
* Close day-event
*/
$('.close').on('click', function(e) {
$(this).parent().slideUp('fast');
});
所以我的问题是。如何让这张幻灯片正确而不是向下?由于我的网站布局,我宁愿事件信息出现在右边。
提前谢谢!!
EDIT;
插件链接:http://jquery-plugins.net/jquery-simple-event-calendar
Github链接:https://github.com/philipehsing/jQuery.Simple-Event-Calendar
演示:http://www.jqueryscript.net/demo/Creating-A-Pretty-Event-Calendar-with-jQuery/#