uci-hugo-landingpage/assets/js/docready.js

18 lines
367 B
JavaScript
Raw Normal View History

// requires jquery
$(document).ready(function () {
$("#media").lightGallery({
thumbnail: true,
thumbWidth: 80,
controls: true,
loop: false,
download: true,
counter: true,
// videojs: true
});
2017-03-04 20:02:56 -08:00
hero() // size the hero section initially
// Resize event will run hero function.
$(window).resize(function () {
hero();
});
});