/* ------------------------------------------- * tooltip.js ------------------------------------------- */ $(function(){ var $ttKey = $(".slideImg a"); var $ttBody = $(".tooltips"); var _sp__limit_size = 760;//640; var _sp__for_pc = (typeof window.orientation == "undefined" && document.documentElement.clientWidth > _sp__limit_size) ? true : false; // first setting $ttBody.hide(); // init $ttKey.hover(function(){ if (_sp__for_pc) { $(this).parent().next().stop(true, false) .css({"z-index":"9999","display":"block"}) } }, function() { if (_sp__for_pc) { $(this).parent().next().stop(true, false) .css({"z-index":"0","display":"none"}) } }); /** * リサイズイベント発生時 * */ $(window).resize(function(){ _sp__for_pc = (typeof window.orientation == "undefined" && document.documentElement.clientWidth > _sp__limit_size) ? true : false; }); });