$(document).ready(function(){ //mobile menu toggling $("#menu_icon").click(function(){ $("header nav ul").toggleClass("show_menu"); $("#menu_icon").toggleClass("close_menu"); return false; }); //Contact Page Map Centering var hw = $('header').width() + 50; var mw = $('#map').width(); var wh = $(window).height(); var ww = $(window).width(); $('#map').css({ "max-width" : mw, "height" : wh }); if(ww>1100){ $('#map').css({ "margin-left" : hw }); } //Tooltip $("a").mouseover(function(){ var attr_title = $(this).attr("data-title"); if( attr_title == undefined || attr_title == "") return false; $(this).after(''); var tooltip = $(".tooltip"); tooltip.append($(this).data('title')); var tipwidth = tooltip.outerWidth(); var a_width = $(this).width(); var a_hegiht = $(this).height() + 3 + 4; //if the tooltip width is smaller than the a/link/parent width if(tipwidth < a_width){ tipwidth = a_width; $('.tooltip').outerWidth(tipwidth); } var tipwidth = '-' + (tipwidth - a_width)/2; $('.tooltip').css({ 'left' : tipwidth + 'px', 'bottom' : a_hegiht + 'px' }).stop().animate({ opacity : 1 }, 200); }); $("a").mouseout(function(){ var tooltip = $(".tooltip"); tooltip.remove(); }); }); /*********************************************/ $('.carousel').carousel({interval: 2000 }) $('.subcarousel').carousel({interval: 4000 }) /***************** Waypoints ******************/ $('.wp1').waypoint(function() { $('.wp1').addClass('animated fadeInUp'); }, { offset: '100%' }); $('.wp2').waypoint(function() { $('.wp2').addClass('animated fadeInUp'); }, { offset: '100%' }); $('.wp3').waypoint(function() { $('.wp3').addClass('animated fadeInUp'); }, { offset: '100%' }); $('.wp4').waypoint(function() { $('.wp4').addClass('animated fadeInUp'); }, { offset: '100%' }); $('.wp5').waypoint(function() { $('.wp5').addClass('animated fadeInUp'); }, { offset: '100%' }); $('.wp6').waypoint(function() { $('.wp6').addClass('animated fadeInUp'); }, { offset: '100%' }); //* $(".snstp a,.cttp a").tooltip(); /*hover_img*/ $(document).ready(function(){ $('#simg1').hover( function(){$(this).attr('src','http://bdmp-004.cafe24.com/bizdemo32926/img/s_imgs/sns01r.png')}, function(){$(this).attr('src','http://bdmp-004.cafe24.com/bizdemo32926/img/s_imgs/sns01.png')} ) $('#simg2').hover( function(){$(this).attr('src','http://bdmp-004.cafe24.com/bizdemo32926/img/s_imgs/sns02r.png')}, function(){$(this).attr('src','http://bdmp-004.cafe24.com/bizdemo32926/img/s_imgs/sns02.png')} ) $('#simg3').hover( function(){$(this).attr('src','http://bdmp-004.cafe24.com/bizdemo32926/img/s_imgs/sns03r.png')}, function(){$(this).attr('src','http://bdmp-004.cafe24.com/bizdemo32926/img/s_imgs/sns03.png')} ) $('#simg4').hover( function(){$(this).attr('src','http://bdmp-004.cafe24.com/bizdemo32926/img/s_imgs/sns04r.png')}, function(){$(this).attr('src','http://bdmp-004.cafe24.com/bizdemo32926/img/s_imgs/sns04.png')} ) }); //#to-top button appears after scrolling var fixed = false; $(document).scroll(function() { if ($(this).scrollTop() > 250) { if (!fixed) { fixed = true; // $('#to-top').css({position:'fixed', display:'block'}); $('#to-top').show("slow", function() { $('#to-top').css({ position: 'fixed', display: 'block' }); }); } } else { if (fixed) { fixed = false; $('#to-top').hide("slow", function() { $('#to-top').css({ display: 'none' }); }); } } });