definicao de layout
This commit is contained in:
44
public/assets/js/general-widget.js
Normal file
44
public/assets/js/general-widget.js
Normal file
@@ -0,0 +1,44 @@
|
||||
"use strict";
|
||||
var general_widget = {
|
||||
init: function() {
|
||||
$('#owl-carousel-testimonial').owlCarousel({
|
||||
loop:true,
|
||||
//margin:10,
|
||||
items:1,
|
||||
nav:false,
|
||||
dots:false
|
||||
});
|
||||
|
||||
|
||||
const months = ["Jan", "Feb", "March", "April", "May", "June", "July", "Aug", "Sept", "Oct", "Nov", "Dec"]
|
||||
const now = new Date()
|
||||
$('#monthDay').append(`${months[now.getMonth()]} ${now.getDate()}`);
|
||||
$('#year').append(`${now.getFullYear()}`);
|
||||
$(function() {
|
||||
setInterval( function() {
|
||||
var seconds = new Date().getSeconds();
|
||||
var sdegree = seconds * 6;
|
||||
var srotate = "rotate(" + sdegree + "deg)";
|
||||
$("#sec").css({ "transform": srotate });
|
||||
}, 1000 );
|
||||
setInterval( function() {
|
||||
var hours = new Date().getHours();
|
||||
var mins = new Date().getMinutes();
|
||||
var hdegree = hours * 30 + (mins / 2);
|
||||
var hrotate = "rotate(" + hdegree + "deg)";
|
||||
$("#hour").css({ "transform": hrotate});
|
||||
}, 1000 );
|
||||
setInterval( function() {
|
||||
var mins = new Date().getMinutes();
|
||||
var mdegree = mins * 6;
|
||||
var mrotate = "rotate(" + mdegree + "deg)";
|
||||
$("#min").css({ "transform" : mrotate });
|
||||
|
||||
}, 1000 );
|
||||
});
|
||||
}
|
||||
};
|
||||
(function($) {
|
||||
"use strict";
|
||||
general_widget.init();
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user