<script>
$(document).ready(function(){
$("button").click(function(){
$(".inside").css("transform","translateX(0px)")
});
如何才能使JS代碼在點擊和返回時翻譯? (「。」).css(「transform」,「translateX(400px)」); } });如何在同一個按鈕的多次按下時有條件地轉換div到一個狀態
</script>
<style>
#cont{
background:#98bf21;
height:400px;
width:400px;
}
.inside{
background:#09C;
height:400px;
width:400px;
position:absolute;
overflow:hidden;
transform:translateX(-500px);
transition:1s;
}
</style>
<body>
<button>Button</button>
<div id="cont" >
<div class="inside"></div>
</div>
</body>
</html>
使用 「大寫鎖定」 是不適合這個系統。 – yanis
對不起,請牢記這一點。 –