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

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

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

    1. <legend id='ek0uc'><style id='ek0uc'><dir id='ek0uc'><q id='ek0uc'></q></dir></style></legend>
      1. <tfoot id='ek0uc'></tfoot>

        如何使用 CSS 在悬停时向图像添加工具提示

        时间:2023-11-29

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

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

          <legend id='w22sp'><style id='w22sp'><dir id='w22sp'><q id='w22sp'></q></dir></style></legend>

              <bdo id='w22sp'></bdo><ul id='w22sp'></ul>
                <tfoot id='w22sp'></tfoot>
                    <tbody id='w22sp'></tbody>

                  本文介绍了如何使用 CSS 在悬停时向图像添加工具提示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有三张图片,在悬停时它们使用 :hover 在 css 中增加大小.当用户将鼠标悬停在图像上时,我还希望出现一个带有图像描述的工具提示(我也应该能够定位工具提示).

                  HTML

                  <div class="bottle-container"><div class="click-to-top"><img src="image-1.png" alt="Image 1"/>工具提示文本</div><div class="click-to-top" style="z-index:5;"><img src="image-2.png" alt="Image 2"/></div><div class="click-to-top last"><img src="image-3.png" alt="Image 3"/></div></div>

                  CSS

                  容器{最大宽度:600px;边距:0 自动;最小高度:450px;}div.click-to-top {显示:内联块;位置:相对;最大宽度:160px;}div.click-to-top:悬停{z指数:10;}div.click-to-top img{-webkit-transition:全0.8s;moz-transition:全部为 0.8s;过渡:全0.8s;宽度:130px;}div.click-to-top img:hover{宽度:140px;z指数:10;}

                  解决方案

                  您可以将文本包装到 并显示在父 :hover

                  <块引用>

                  CSS

                  div.click-to-top span {显示:无;位置:绝对;底部:0;左:0;右:0;背景:#333;颜色:#fff;}div.click-to-top:hover span {显示:块;}

                  <块引用>

                  HTML

                  <div class="click-to-top"><img src="http://lorempicsum.com/futurama/350/200/1"alt="图像 1";/><span>工具提示文本</span></div>

                  小提琴

                  I have three images, on hover they increase in size using :hover in css. When a user hovers over the image I'd also like a tooltip to appear with a description of the image (I should also be able to position the tooltip).

                  HTML

                  <div class="bottle-container">
                  <div class="click-to-top"><img src="image-1.png" alt="Image 1" />Tooltip text</div>
                  <div class="click-to-top" style="z-index:5;"><img src="image-2.png" alt="Image 2" /></div>
                  <div class="click-to-top last"><img src="image-3.png" alt="Image 3" /></div>
                  </div>
                  

                  CSS

                  container{
                  max-width:600px;
                  margin:0 auto;
                  min-height:450px;
                  }
                  
                  div.click-to-top {
                  display:inline-block;
                  position:relative;
                  max-width:160px;
                  }
                  
                  div.click-to-top:hover{
                  z-index:10;
                  }
                  
                  div.click-to-top img{
                  -webkit-transition: all 0.8s;
                  moz-transition: all 0.8s;
                  transition: all 0.8s;
                  width:130px;
                  }
                  
                  div.click-to-top img:hover{
                  width:140px;
                  z-index:10;
                  }
                  

                  解决方案

                  You can wrap the text into a <span></span> and show it on parent :hover

                  CSS

                  div.click-to-top span {
                    display: none;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    background: #333;
                    color: #fff;
                  }
                  
                  div.click-to-top:hover span {
                    display: block;
                  }
                  

                  HTML

                  <div class="click-to-top">
                    <img src="http://lorempicsum.com/futurama/350/200/1" alt="Image 1" />
                    <span>Tooltip text</span>
                  </div>
                  

                  Fiddle

                  这篇关于如何使用 CSS 在悬停时向图像添加工具提示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  <small id='5pgRG'></small><noframes id='5pgRG'>

                      <tbody id='5pgRG'></tbody>

                      1. <tfoot id='5pgRG'></tfoot>

                          <bdo id='5pgRG'></bdo><ul id='5pgRG'></ul>

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