jquery图像悬停在平板电脑上

时间:2015-04-08 08:10:59

标签: jquery mouseover

我试图在平板电脑上使用的网站上加入悬停图片旋转功能。不幸的是,我对如何解决拼图的最后部分感到有点迷茫。有人能帮忙吗?下面的脚本在悬停时旋转图像并添加一个附加文本框。

jquery:
$(document).ready(function(){
  $(".1").hover(
function(){$("#Information-Seawater").show();},
function(){$("#Information-Seawater").hide()});

});

jQuery(function(){
     $(".1").hover(
          function(){this.src = this.src.replace("-Icon","-Image");},
          function(){this.src = this.src.replace("-Image","-Icon");
     });
});

式:

#Information-Seawater {
    display: none;
      top: 650px;
      margin-left:auto;
    margin-right:auto;
    width:60%; 
    font-family: Consolas;
    background: #00bbe4;
    border: 2px solid black;
    COLOR: #006080; 
  }

HTML:

<td class="style6" style="height: 77px; width: 140px"><a href="Http://"><img `id="1" height="147" src="website-%20images/Seawater-Icon.jpg" alt="" class="1" width="140"></a></td>`

<div id="Information-Seawater">
<span class="Information-Header">text<br /></span>
text
<br />
</div>

上述脚本适用于PC,但不适用于平板电脑。我希望有人能够帮助我将上述内容与下面的功能结合起来,在平板电脑上,在徘徊之前需要点击一次图像。

http://jsfiddle.net/c_kick/s9rB4/

Jquery hover function and click through on tablet

感谢任何帮助!

1 个答案:

答案 0 :(得分:1)

您不能将鼠标悬停在平板电脑上,因为直到您触摸屏幕时才会发生任何事件。尝试检测它何时是平板电脑并绑定点击事件而不是悬停。