// JavaScript Document // 画像切り替え $(document).ready(function() { $(window).on('load resize', function(){ var win = $(window).width(); var p = 768; if(win > p){ $('#imgbox300_180_title_01').html('アダルト10円動画'); $('#imgbox300_180_title_02').html('アダルト 期間限定セール(毎週作品更新)'); $('#imgbox300_180_title_03').html('見放題ch プレミアム'); $('#imgbox_skyscraper_01').html(''); } else { $('#imgbox300_180_title_01').html('アダルト10円動画'); $('#imgbox300_180_title_02').html('アダルト 期間限定セール(毎週作品更新)'); $('#imgbox300_180_title_03').html('見放題ch プレミアム'); $('#imgbox_skyscraper_01').html(''); } }); });