<small id='JlsCr'></small><noframes id='JlsCr'>

    <bdo id='JlsCr'></bdo><ul id='JlsCr'></ul>

  • <tfoot id='JlsCr'></tfoot>
  • <i id='JlsCr'><tr id='JlsCr'><dt id='JlsCr'><q id='JlsCr'><span id='JlsCr'><b id='JlsCr'><form id='JlsCr'><ins id='JlsCr'></ins><ul id='JlsCr'></ul><sub id='JlsCr'></sub></form><legend id='JlsCr'></legend><bdo id='JlsCr'><pre id='JlsCr'><center id='JlsCr'></center></pre></bdo></b><th id='JlsCr'></th></span></q></dt></tr></i><div id='JlsCr'><tfoot id='JlsCr'></tfoot><dl id='JlsCr'><fieldset id='JlsCr'></fieldset></dl></div>
    <legend id='JlsCr'><style id='JlsCr'><dir id='JlsCr'><q id='JlsCr'></q></dir></style></legend>

        在 HTML 中,如何在将鼠标悬停在文本上时显示图像?

        时间:2023-11-29
      1. <i id='6TWF4'><tr id='6TWF4'><dt id='6TWF4'><q id='6TWF4'><span id='6TWF4'><b id='6TWF4'><form id='6TWF4'><ins id='6TWF4'></ins><ul id='6TWF4'></ul><sub id='6TWF4'></sub></form><legend id='6TWF4'></legend><bdo id='6TWF4'><pre id='6TWF4'><center id='6TWF4'></center></pre></bdo></b><th id='6TWF4'></th></span></q></dt></tr></i><div id='6TWF4'><tfoot id='6TWF4'></tfoot><dl id='6TWF4'><fieldset id='6TWF4'></fieldset></dl></div>

        <legend id='6TWF4'><style id='6TWF4'><dir id='6TWF4'><q id='6TWF4'></q></dir></style></legend>
          <tbody id='6TWF4'></tbody>
          <tfoot id='6TWF4'></tfoot>
              <bdo id='6TWF4'></bdo><ul id='6TWF4'></ul>

                <small id='6TWF4'></small><noframes id='6TWF4'>

                1. 本文介绍了在 HTML 中,如何在将鼠标悬停在文本上时显示图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在 HTML 中,当我将鼠标悬停在特定文本部分上时,如何使图像出现(或变得可见)?我正在编写一个 HTML 应用程序,以下是我的代码:

                  In HTML, how can I cause an image to appear (or become visible) while I'm hovering over a specific section of text? I'm coding an HTML app, and the following is my code:

                          .plank1 {
                               position: static;
                               left: 80px;
                               top: 100px;
                               visibility: visible;
                          }
                  
                          .plank1appear:hover .plank1{
                               visibility: visible;
                          }
                  

                  推荐答案

                  要在将鼠标悬停在整段文本上时显示图像,您可以在 hover 上显示和隐藏图像:

                  To show an image when you hover over a whole section of text you can show and hide the image on hover:

                  CSS

                  img{
                     display: none
                  }
                  
                  p.one:hover + img{ //img is a sibling
                     display: block;
                  }
                  
                  p.two:hover img{ //image is a child
                     display: block;
                  }
                  

                  HTML

                  <p class="one">HOVER OVER ME - IMG IS SIBLING</p>
                  <img src="http://www.placecage.com/100/100"/>
                  
                  
                  <p class="two">HOVER OVER ME -IMG IS CHILD
                     <img src="http://www.placecage.com/100/100"/>
                  </p>
                  

                  示例

                  如果您想将鼠标悬停在文本的特定部分上,您可以将文本包装在 span 中,并将图像设为该 span 的同级或子级:

                  If you want to hover over a specific part of the text, you can wrap the text in a span and just make the image a sibling or child of that span:

                  HTML

                  <p>This is some text. <span>HOVER OVER ME</span>
                     <img src="http://www.placecage.com/100/100"/>
                  </p>
                  

                  CSS

                  img{
                     display: none
                  }
                  
                  span:hover + img{
                     display: block;
                  }
                  

                  示例二

                  这篇关于在 HTML 中,如何在将鼠标悬停在文本上时显示图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:为什么悬停在委托事件处理程序中不起作用? 下一篇:IE 问题:图片上方的透明 div 不会触发 CSS:hover

                  相关文章

                  • <bdo id='YRAq2'></bdo><ul id='YRAq2'></ul>

                  <small id='YRAq2'></small><noframes id='YRAq2'>

                    1. <i id='YRAq2'><tr id='YRAq2'><dt id='YRAq2'><q id='YRAq2'><span id='YRAq2'><b id='YRAq2'><form id='YRAq2'><ins id='YRAq2'></ins><ul id='YRAq2'></ul><sub id='YRAq2'></sub></form><legend id='YRAq2'></legend><bdo id='YRAq2'><pre id='YRAq2'><center id='YRAq2'></center></pre></bdo></b><th id='YRAq2'></th></span></q></dt></tr></i><div id='YRAq2'><tfoot id='YRAq2'></tfoot><dl id='YRAq2'><fieldset id='YRAq2'></fieldset></dl></div>
                    2. <tfoot id='YRAq2'></tfoot>
                      <legend id='YRAq2'><style id='YRAq2'><dir id='YRAq2'><q id='YRAq2'></q></dir></style></legend>