web-dev-qa-db-ja.com

ホバーとホバーアウトでdivを表示/非表示

ホバー中とホバー中にdivを表示および非表示にしたいと思います。

これが私が最近やったことです。

css

$("#menu").hover(function() {
  $('.flyout').removeClass('hidden');
}, function() {
  $('.flyout').addClass('hidden');
});
.flyout {
  position: absolute;
  width: 1000px;
  height: 450px;
  background: red;
  overflow: hidden;
  z-index: 10000;
}

.hidden {
  visibility: hidden;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<div id="menu" class="margint10 round-border">
  <a href="#"><img src="images/menu.jpg" alt="" id="menu_link" /></a>
</div>
<div class="flyout hidden">&nbsp;</div>

私の問題は、メニューIDにカーソルを合わせると、フライアウトdivが点滅していることです。何故ですか?

25

JSは必要ないかもしれません。これはcssでも実現できます。このように書く:

.flyout {
    position: absolute;
    width: 1000px;
    height: 450px;
    background: red;
    overflow: hidden;
    z-index: 10000;
    display: none;
}
#menu:hover + .flyout {
    display: block;
}
28
sandeep

代わりに.show()/.hide()を使用しないのはなぜですか?

$("#menu").hover(function(){
    $('.flyout').show();
},function(){
    $('.flyout').hide();
});
31
xdazz

これを行う別の方法を次に示します。そして、私はあなたのコードがうまく機能していることさえ発見しました。

あなたのコード: http://jsfiddle.net/NKC2j/

JQueryトグルクラスのデモ: http://jsfiddle.net/NKC2j/2/

JQueryフェードトグル: http://jsfiddle.net/NKC2j/3/

JQueryスライド切り替え: http://jsfiddle.net/NKC2j/4/

そして、あなたはSandeepによって答えられたCSSでこれを行うことができます

16
SVS

シンプルなshow/hideホバーにはcss opacityを使用した方が良いことがわかりました。 css トランジションを追加して、素敵なホバー効果を完成させることができます。トランジションは、古いIEブラウザーによってドロップされるため、正常に低下します。

JSフィドルデモ

CSS

#stuff {
    opacity: 0.0;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
#hover {
    width:80px;
    height:20px;
    background-color:green;
    margin-bottom:15px;
}
#hover:hover + #stuff {
    opacity: 1.0;
}

HTML

<div id="hover">Hover</div>
<div id="stuff">stuff</div>
3
Timothy
<script type="text/javascript">
    var IdAry=['reports1'];
    window.onload=function() {
     for (var zxc0=0;zxc0<IdAry.length;zxc0++){
      var el=document.getElementById(IdAry[zxc0]);
      if (el){
       el.onmouseover=function() {
         changeText(this,'hide','show')
        }
       el.onmouseout=function() {
         changeText(this,'show','hide');
        }
      }
     }
    }
    function changeText(obj,cl1,cl2) {
       obj.getElementsByTagName('SPAN')[0].className=cl1;
       obj.getElementsByTagName('SPAN')[1].className=cl2;
    }
</script>

ur htmlは次のようになります

<p id="reports1">
                <span id="span1">Test Content</span>
                <span class="hide">

                    <br /> <br /> This is the content that appears when u hover on the it
                </span>
            </p>

JQueryを使用してdivを表示し、マウスのある場所に設定できます。

html:

<!DOCTYPE html>
<html>

  <head>
    <link href="style.css" rel="stylesheet" />
    <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
  </head>

  <body>
    <div id="trigger">
      <h1>Hover me!</h1>
      <p>Ill show you wonderful things</p>
    </div>
    <div id="secret">
     shhhh
    </div>
    <script src="script.js"></script>
  </body>

</html>

スタイル:

#trigger {
  border: 1px solid black;
}
#secret {
  display:none;
  top:0;  
  position:absolute;
  background: grey;
  color:white;
  width: 50%;
}

js:

$("#trigger").hover(function(e){
    $("#secret").show().css('top', e.pageY + "px").css('left', e.pageX + "px");
  },function(e){
    $("#secret").hide()
})

ここに例を見つけることができます。 http://plnkr.co/edit/LAhs8X9F8N3ft7qFvjzy?p=preview

0
JohnCdf