【发布时间】:2016-10-15 06:35:08
【问题描述】:
您好,我在This Page 找到了一个悬停功能,用于更改其中 div 的不透明度。
这在台式机和 iPhone 上都可以正常工作,但无论我使用什么方法它都不能在 ipad 上工作?但是它确实适用于 ipad 上的 firefox。我试过了,:hover :focus 甚至
$(".stretchy-wrapper").hover(function(){
//On Hover - Works on ios
$(this).css('opacity','1');
}, function(){
//Hover Off - Hover off doesn't seem to work on iOS
$(this).css('opacity','0');
仍然没有运气,能想出什么其他的尝试或找到错误的任何原因吗?
【问题讨论】:
标签: jquery ios css hover focus