2014年3月17日 星期一

full_calendar change event color , dynamic

來源 https://code.google.com/p/fullcalendar/issues/attachmentText?id=1029&aid=10290002000&name=default-mouseover-test.html&token=I-fs6pDL4KnpKKk1UdvvOZJzJ1U%3A1395050354329

 eventMouseover: function(calEvent, jsEvent, view) {
       savBg = $(this).css("background-color");
       savClr = $(this).css("color");
       $(this).css( { color:'#ffff00', backgroundColor:"#006" } );
       $("#test").css( { color:'#ffff00', backgroundColor:"#006" } );
       $(this).fadeTo('slow',.5);//.css(text-align,'right');
       },
 eventMouseout: function(calEvent, jsEvent, view) {
       $(this).css( { color:savClr, backgroundColor:savBg } );
       $("#test").css( { color:savClr, backgroundColor:savBg } );
       $(this).fadeTo('slow',1);
                        },

沒有留言:

張貼留言