画面の左上隅に回転して位置を固定するアンカーを含む div があります。スクロールが行われているとき、それは私の atrix hd で狂ったように飛び回ります。-webkit-overflow-scrolling: div css でのタッチは何もしません。<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 次