$(function(){ if (window.matchMedia( "(min-width: 600.5px)" ).matches) { //pc $('.borderBox .arrowTitle').tile(2); $('.borderBox .DescText').tile(2); } else { //スマホ } js_toolTips(); }); var js_toolTips = function() { var toolBox = $('.js-tooltip-box'); var toolTxt = $('.js-tooltip-txt'); toolBox.css({ opacity : "1", position : "absolute", zIndex : "9", display : "none" }); toolTxt.each(function() { var target = $(this).next(toolBox); $(this).on('mouseover', function() { target.stop().fadeIn(); }).on('mouseout', function() { target.stop().fadeOut(); }).on('mousemove', function(event) { if (window.matchMedia( "(min-width: 961px)" ).matches) { //pc target.css({ "top" : event.offsetY + 12 + "px", "left" : event.offsetX + 12 + "px" }); } else { //スマホ target.css({ "top" : event.offsetY + 12 + "px", "left" : "0px" }); } }); }); }