我有一个带有 jQuery 的网页。当我在 iPad / iPhone 中打开它时,在为其设置悬停行为时,超链接无法按预期工作。
我试图通过在互联网上浏览许多网站来解决这个问题,但找不到任何特定的解决方案。也许我无法理解发生了什么。我将不胜感激一些线索和解决方案。
这是设置悬停的代码:
.box:hover .box_details .description2 {
height: auto !important;
display: block
}
.box .social {
width: 150px ;
position: absolute;
z-index: 99 ;
margin: 0 auto;
margin-left: 50%;
left: -75px;
text-align: center
}
.box:hover .social ul {
margin-top: 10px;
-webkit-transition: margin-top linear 0.5s ;
transition: margin-top linear 0.5s ;
}
.box .social ul {
width: 100% ;
float: left ;
margin-top: -50px ;
}
.box .social ul li {
float: left;
list-style: none;
margin: 1% 1% 0 1%;
line-height: 20px;
width: 22%
}
.box .social ul li img {
width: 100% !important;
position: relative
}
请帮帮我。谢谢!