add mico template

This commit is contained in:
2024-05-21 04:13:10 +02:00
parent dbc97005e9
commit e5a4ed362b
38 changed files with 18721 additions and 0 deletions

4439
web/healthcare/mico/js/bootstrap.js vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,46 @@
// to get current year
function getYear() {
var currentDate = new Date();
var currentYear = currentDate.getFullYear();
document.querySelector("#displayYear").innerHTML = currentYear;
}
getYear();
// nice select
$(document).ready(function () {
$('select').niceSelect();
});
// date picker
$(function () {
$("#inputDate").datepicker({
autoclose: true,
todayHighlight: true
}).datepicker('update', new Date());
});
// owl carousel slider js
$('.team_carousel').owlCarousel({
loop: true,
margin: 15,
dots: true,
autoplay: true,
navText: [
'<i class="fa fa-angle-left" aria-hidden="true"></i>',
'<i class="fa fa-angle-right" aria-hidden="true"></i>'
],
autoplayHoverPause: true,
responsive: {
0: {
items: 1,
margin: 0
},
576: {
items: 2,
},
992: {
items: 3
}
}
})

File diff suppressed because one or more lines are too long