$(function(){ $('.seedetail > button.showbutton').click(function(){ $('.seedetail > button.showbutton').fadeOut(0); $('.seedetail > button.hiddenbutton').fadeIn(0); $('.seedetail > .seedetail_').slideDown(300); }); $('.seedetail > button.hiddenbutton').click(function(){ $('.seedetail > button.hiddenbutton').fadeOut(0); $('.seedetail > button.showbutton').fadeIn(0); $('.seedetail > .seedetail_').slideUp(300); }); }); $(function(){ $('.popup>.popup_wrap>.popup_close>button').click(function(){ $('.popup').fadeOut(0); }); }); var x_styleLeft, y_styleTop, x_accept, y_accept; $(document).ready(function(){ $('#pop-up').mousedown(function(event) { x_styleLeft = event.clientX - $("#pop-up").offset().left; y_styleTop = event.clientY - $("#pop-up").offset().top; $(document).mousemove(function(event){ x_accept = event.clientX - x_styleLeft; y_accept = event.clientY - y_styleTop; $("#pop-up").css("left",x_accept+"px"); $("#pop-up").css("top",y_accept+"px"); }); }); }).mouseup(function(){ $(this).off('mousemove'); }); $('#pop-up').css('cursor', 'move') $(function(){ $('.dropdown-menu>li:nth-child(1)').mouseover(function(){ $('.dropdown-menu>li>ul').fadeOut(0); $('.dropdown-menu>li:nth-child(1)>ul').fadeIn(0); }); $('.dropdown-menu>li:nth-child(2)').mouseover(function(){ $('.dropdown-menu>li>ul').fadeOut(0); $('.dropdown-menu>li:nth-child(2)>ul').fadeIn(0); }); $('.dropdown-menu>li:nth-child(3)').mouseover(function(){ $('.dropdown-menu>li>ul').fadeOut(0); $('.dropdown-menu>li:nth-child(3)>ul').fadeIn(0); }); $('.dropdown-menu>li:nth-child(4)').mouseover(function(){ $('.dropdown-menu>li>ul').fadeOut(0); $('.dropdown-menu>li:nth-child(4)>ul').fadeIn(0); }); $('.dropdown-menu>li:nth-child(5)').mouseover(function(){ $('.dropdown-menu>li>ul').fadeOut(0); $('.dropdown-menu>li:nth-child(5)>ul').fadeIn(0); }); $('.dropdown-menu>li:nth-child(6)').mouseover(function(){ $('.dropdown-menu>li>ul').fadeOut(0); $('.dropdown-menu>li:nth-child(6)>ul').fadeIn(0); }); $('.dropdown-menu>li:nth-child(7)').mouseover(function(){ $('.dropdown-menu>li>ul').fadeOut(0); $('.dropdown-menu>li:nth-child(7)>ul').fadeIn(0); }); $('.dropdown-menu>li:nth-child(8)').mouseover(function(){ $('.dropdown-menu>li>ul').fadeOut(0); $('.dropdown-menu>li:nth-child(8)>ul').fadeIn(0); }); $('.dropdown-menu>li:nth-child(9)').mouseover(function(){ $('.dropdown-menu>li>ul').fadeOut(0); $('.dropdown-menu>li:nth-child(9)>ul').fadeIn(0); }); $('.dropdown').mouseleave(function(){ $('.dropdown-menu>li>ul').fadeOut(0); }); });