Tooltip for fullcalendar in year view

前端 未结 5 917
一生所求
一生所求 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 05:48

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

提交回复
热议问题