// JavaScript Document $(document).ready(function() { //NaviMenu $(function(){ $("#toggle").click(function(){ $("#menu").slideToggle(); return false; }); $(window).on('load resize', function(){ var win = $(window).width(); var w = 1024; var p = 768; if(win > w){ $("#menu").show();//Navigation $(".rankframe").show();//ranking $('.sampleiframe').html('TEST'); $('.imgbox180_300_base_1').html('アダルトアニメチャンネル'); $('.imgbox180_300_base_2').html('アダルトアニメDVD通販'); $('.imgbox728_300sp_base_3').html('Getchu.com アダルトTOP'); $('.imgbox160l_300_getchu').html('★『恋騎士 Purely☆Kiss The Animation 「エルシア=ハーヴェンス」』'); } else if(win > p && win < w){ $("#menu").show();//Navigation $(".rankframe").show();//ranking $('.sampleiframe').html('TEST2'); $('.imgbox180_300_base_1').html('アダルトアニメチャンネル'); $('.imgbox180_300_base_2').html('アダルトアニメDVD通販'); $('.imgbox728_300sp_base_3').html('Getchu.com アダルトTOP'); $('.imgbox160l_300_getchu').html('★『恋騎士 Purely☆Kiss The Animation 「エルシア=ハーヴェンス」』'); } else { $("#menu").hide();//Navigation $(".rankframe").hide();//ranking $('.sampleiframe').html(''); $('.imgbox180_300_base_1').html('アダルトアニメチャンネル'); $('.imgbox180_300_base_2').html(''); $('.imgbox728_300sp_base_3').html('Getchu.com アダルトTOP'); $('.imgbox160l_300_getchu').html(''); } }); }); //アコーディオンメニュー $(".listul h4").click(function(){ $(this).next("ul").slideToggle(); $(this).children("span").toggleClass("open"); }); //アコーディオンメニュー2 $("#kanalist h4").click(function(){ $(this).next("ul").slideToggle(); $(this).children("span").toggleClass("open"); }); });