Team:TJU China/js/script

// $(document).ready (function(){ // dropdownOpen(); // }); // /** // * 鼠标划过就展开子菜单,免得需要点击才能展开 // */ // function dropdownOpen() { // // var $dropdownLi = $('li.dropdown'); // // $dropdownLi.mouseover(function() { // $(this).addClass('open'); // }).mouseout(function() { // $(this).removeClass('open'); // }); // }

$(window).load(function() { //Preloader $("#status").delay(300).fadeOut(); $('#preloader').delay(300).fadeOut('slow'); $('body').delay(550).css({'overflow':'visible'}); })

$(document).ready(function(){

   $("a[data-toggle]").click(function(){
       $(this).find('span').toggleClass("fui-triangle-down").toggleClass("fui-triangle-right-large");
   });

});

$(document).ready(function() { //animated logo $(".navbar-brand").hover(function () { $(this).toggleClass("animated shake"); });


$(".hover-bounce").hover(function () { $(this).toggleClass("animated bounce"); });


wow = new WOW( { mobile: false }); wow.init();

});