我有一个 div,其中包含一个我已旋转和定位的锚点:固定在屏幕的左上角。当进行任何滚动时,它会在我的 atrix hd 中疯狂地跳跃。-webkit-overflow-scrolling: divs css 中的 touch 什么都不做。这是我的元视口的事情,如果这可能
<meta name="viewport" content="width=100%, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/>
对有问题的 div 的 html 和
<div id="shop" class="center">
<a href="#" class="railway">
SHOP
</a>
</div>
CSS
很重要#shop {
position: fixed;
left: -72px;
top: 14px;
background-color: #F03C2E;
-ie-transform: rotate(314deg);
-moz-transform: rotate(314deg);
-o-transform: rotate(314deg);
-webkit-transform: rotate(314deg);
transform: rotate(314deg);
width: 192px;
z-index: 10;
test-align: center;
}
问问题
1874 次