jquery – fullcalendar当前时间行在星期视图和日视图

前端之家收集整理的这篇文章主要介绍了jquery – fullcalendar当前时间行在星期视图和日视图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
据了解,根据这个问题,在谷歌代码 http://code.google.com/p/fullcalendar/issues/detail?id=143上有一个soloution浮动,但我似乎找不到它。

我想知道有没有人知道如何在日历上显示red solid line on the current time

解决方法

function setTimeline(view) {
    var parentDiv = jQuery(".fc-agenda-slots:visible").parent();
    var timeline = parentDiv.children(".timeline");
    if (timeline.length == 0) { //if timeline isn't there,add it
        timeline = jQuery("<hr>").addClass("timeline");
        parentDiv.prepend(timeline);
    }

    var curTime = new Date();

    var curCalView = jQuery("#calendar").fullCalendar('getView');
    if (curCalView.visStart < curTime && curCalView.visEnd > curTime) {
        timeline.show();
    } else {
        timeline.hide();
        return;
    }

    var curSeconds = (curTime.getHours() * 60 * 60) + (curTime.getMinutes() * 60) + curTime.getSeconds();
    var percentOfDay = curSeconds / 86400; //24 * 60 * 60 = 86400,# of seconds in a day
    var topLoc = Math.floor(parentDiv.height() * percentOfDay);

    timeline.css("top",topLoc + "px");

    if (curCalView.name == "agendaWeek") { //week view,don't want the timeline to go the whole way across
        var dayCol = jQuery(".fc-today:visible");
        var left = dayCol.position().left + 1;
        var width = dayCol.width()-2;
        timeline.css({
            left: left + "px",width: width + "px"
        });
    }

}

然后在设置中:

viewDisplay: function(view) {
        try {
            setTimeline();
        } catch(err) {}
    },

并在css中:

.timeline {
    position: absolute;
    left: 59px;
    border: none;
    border-top: 1px solid red;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 999;
}

只有在周末观看,因为这是我使用的。

祝你好运。

编辑:

为了让白天更新时间轴,您可以在viewDisplay中尝试这样的事情:

viewDisplay: function(view) {
            if(first){
                first = false;
            }else {
                window.clearInterval(timelineInterval);
            }
            timelineInterval = window.setInterval(setTimeline,300000);
            try {
                setTimeline();
            } catch(err) {}
        },

您将需要在标签的顶部设置first = true。这将每300秒移动时间轴= 5分钟。你可以降低它,如果你需要它更顺利..

猜你在找的jQuery相关文章