Here we intend to guide you through the total process of design, development and delivery of the learning experiences. You will be guided through the various elements of a module that is developed on an e-learning platform. We will use examples from modules developed on CANVAS and throughout, you will be prompted to develop your own online module as we go through the process. You will also be introduced to a suitable online module quality assessment rubric
USEFUL INFORMATION AND UPDATES
Calendar
Need Any Help?
Address
Niyandhurumaage, 7th floor, Alimas Magu, Male | Ph:3341545 | 3341535
Email Address
info@micollege.edu.mv | marketing@micollege.edu.mv
//according to loftblog tut $('.nav li:first').addClass('active');
var showSection = function showSection(section, isAnimate) { var direction = section.replace(/#/, ''), reqSection = $('.section').filter('[data-section="' + direction + '"]'), reqSectionPos = reqSection.offset().top - 0;
if (isAnimate) { $('body, html').animate({ scrollTop: reqSectionPos }, 800); } else { $('body, html').scrollTop(reqSectionPos); }
};
var checkSection = function checkSection() { $('.section').each(function () { var $this = $(this), topEdge = $this.offset().top - 80, bottomEdge = topEdge + $this.height(), wScroll = $(window).scrollTop(); if (topEdge < wScroll && bottomEdge > wScroll) { var currentId = $this.data('section'), reqLink = $('a').filter('[href*=\\#' + currentId + ']'); reqLink.closest('li').addClass('active'). siblings().removeClass('active'); } }); };
$('.main-menu, .responsive-menu, .scroll-to-section').on('click', 'a', function (e) { e.preventDefault(); showSection($(this).attr('href'), true); });
$(window).scroll(function () { checkSection(); });