Files
2019-05-25 23:11:05 -04:00

1 line
1.1 KiB
JavaScript

/*** ------------------------------------------------------ ***/
/*** PLEASE NOTE ***/
/*** THIS FILE USED ONLY FOR YOUTUBE VIDEO BACKGROUND ***/
/*** ------------------------------------------------------ ***/
jQuery(document).ready(function($){
/*** ------------------------------------------------------ ***/
/*** CHANGE DATE ***/
/*** DATE FORMAT: Month Date, Year Hour:Minute:Second ***/
/*** ------------------------------------------------------ ***/
var options = {
startDate : new Date(),
endDate: new Date("February 11, 2018 11:13:00")
/*** TRANSLATION : Enable following line by delete // ***/
// ,titleDays : 'hari', titleHours : 'jam', titleMinutes : 'menit', titleSeconds : 'detik'
/*** Video ID of youtube video - leave blank when wouldn't like to use youtube video as background ***/
,videoID: 'FvAyZyBdsuw'
};
$('#container').cemara(options);
if(options.videoID){
$('body').tubular({videoId: options.videoID});
}
});