Tooltip for fullcalendar in year view

前端 未结 5 931
一生所求
一生所求 2020-12-08 05:35

I want to add tooltip for the fullcalendar in year view. I tried with the below one but it added tooltip to month view. I tried with google but did not find anything related

5条回答
  •  执念已碎
    2020-12-08 06:09

    Here another implementation

    eventMouseover: function(calEvent, jsEvent) { var tooltip = '
    Title: ' + calEvent.title + '
    '; var $tool = $(tooltip).appendTo('body'); $(this).mouseover(function(e) { $(this).css('z-index', 10000); $tool.fadeIn('500'); $tool.fadeTo('10', 1.9); }).mousemove(function(e) { $tool.css('top', e.pageY + 10); $tool.css('left', e.pageX + 20); }); }, eventMouseout: function(calEvent, jsEvent) { $(this).css('z-index', 8); $('.tooltipevent').remove(); },

提交回复
热议问题