ontouchstart删除ipad iphone中的悬停

时间:2013-02-27 14:36:38

标签: javascript jquery css

我有一个按钮有:悬停效果。 但是我想在ipad和iphone中禁用鼠标悬停。 它不起作用

$(document).ready(function () {
            $(".content").hide();
            $(".open1").click(function () {
                $(this).next().slideToggle(400);

                if('ontouchstart' in document){$('#btn_01').unbind('mouseenter mouseleave');}

                var btn = $('#btn_01'), isOn = btn.hasClass('on');              
                if(isOn) { btn.removeClass('on'); }
                else if(btn) { btn.addClass('on'); }
                });
        });

<style type="text/css">

    #btn_01{width:510px; height:109px; background:url('images/btn_01_on.png') no-repeat;}
        #btn_01:hover{width:510px; height:109px; background:url('images/btn_01_over.png') no-repeat;}
        #btn_01.on{width:510px; height:109px; background:url('images/btn_01_over.png') no-repeat;}

2 个答案:

答案 0 :(得分:0)

我会采用不同的方法:

jQuery(function($) {
    var className = ('ontouchstart' in document ) ? "touch-device" : "desktop-device";

    $(document.body).addClass(className);
});

然后,您可以使用body.desktop-devicebody.touch-device指定风格中的调整:

body.desktop-device #btn_01:hover {
    background: red;
}
body.touch-device #btn_01 {
    background: blue;
}

var a = b ? c : d;

//means:

if ( b ) {
    var a = c;
}
else {
    var a = d;
}

答案 1 :(得分:0)

找到了解决这个问题的一种非常简单的方法,使用css @media 我将悬停图像更改为原始图像。

#btn_01{btn_01_on.png'}
#btn_01:hover{btn_01_on.png'}
#btn_01.on{btn_01_over.png'}


@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
#btn_01{width:510px; height:109px; background:url('images/btn_01_on.png') no-repeat;}
#btn_01:hover{width:510px; height:109px; background:url('images/btn_01_on.png') no-repeat;}
#btn_01.on{width:510px; height:109px; background:url('images/btn_01_over.png') no-repeat;}