flask-blog/static/js/main.js

26 lines
478 B
JavaScript
Raw Normal View History

2023-08-18 15:24:47 +00:00
(function ($) {
"use strict";
jQuery(document).ready(function($){
$(".embed-responsive iframe").addClass("embed-responsive-item");
$(".carousel-inner .item:first-child").addClass("active");
$('[data-toggle="tooltip"]').tooltip();
$.material.init();
$('.header-bg').scrolly({bgParallax: true});
});
jQuery(window).load(function(){
$(".preloader").fadeOut(500);
});
}(jQuery));