色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

調整圖像大小的功能不起作用

謝彥文1年前7瀏覽0評論

為什么resizeImg函數不起作用?

<script>
                        img = document.getElementById("Arnold");
                        function enlargeImg() {
                            img.style.transform = "scale(1.5)";
                            img.style.transition = "transform 0.25s ease";
                        }
                        function resetImg() {
                            img.style.transform = "scale(1)";
                            img.style.transition = "transform 0.25s ease";
                        }           
                    </script>

放大功能運行良好,但重置功能卻不行,我不知道為什么。謝謝你