移動(dòng)端在使用overflow-x:hidden屬性時(shí)隐岛,如果直接加在body上無(wú)效,需將內(nèi)容包裹在另一個(gè)div標(biāo)簽中圆仔,并且使用 overflow-x:hidden;postion:relative缆毁,兩個(gè)屬性酝锅,如:
<div style="overflow-x:hidden;position:relative">
<section style="width:100%;height:100%">
</seciton>
<section style="tanslateX-100">
</seciton>
</div>
<style>
.tanslateX-100{
width:100%;
height:100%;
transform: translateX(100%);
transition: all 0.5s;
position: absolute;
top: 50px;
opacity: 1;
}
<style>