禁用div和span标记

时间:2017-03-27 18:47:25

标签: html css html5 css3 mobile-website

在我点击汉堡包图标时,在移动设备上会出现某种模糊现象。我不希望它在那里。

以下是问题的截图:

CLICK

在桌面设备上一切正常。但是在手机或Chrome的响应式设备模拟器上,当我按住一段时间我的汉堡包时,它就会模糊不清。

这是我在代码段中的代码:

$(document).ready(function() {
  $(".hamburger").click(function(){
    $(this).toggleClass("is-active");
  });
});
.hamburger {
    margin-top: 15px;
}
.hamburger .line{
    width: 25px;
    height: 3px;
    background-color: #ecf0f1;
    display: block;
    margin: 4px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hamburger:hover{
    cursor: pointer;
}
#hamburger-9{
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#hamburger-9.is-active{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none; 
    outline-style: none;
    text-decoration: none;
}
#hamburger-9.is-active .line{
    width: 30px;
}
#hamburger-9.is-active .line:nth-child(2){
    opacity: 0;
}
#hamburger-9.is-active .line:nth-child(1){
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    -o-transform: translateY(6px);
    transform: translateY(6px);
}
#hamburger-9.is-active .line:nth-child(3){
    -webkit-transform: translateY(-8px) rotate(90deg);
    -ms-transform: translateY(-8px) rotate(90deg);
    -o-transform: translateY(-8px) rotate(90deg);
    transform: translateY(-8px) rotate(90deg);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="hamburger noselect" id="hamburger-9">
  <span class="line"></span>
  <span class="line"></span>
  <span class="line"></span>
</div>

1 个答案:

答案 0 :(得分:1)

这可能是webkit的重点亮点:https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-tap-highlight-color

* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

(来自您的截图)

你是否正在使用变换来偶然地将x从+变为?