我有這個javascipt的和HTML:關閉javascript改成切換
function flipTXT(rotate) {
if (parent_window && !parent_window.closed) {
parent_window.document.getElementById("teleprompter")
.style.webkitTransform = rotate;
}
}
<li>
<a class="button small icon-text-width flipx" href="#"
onClick="javascript:flipTXT('rotateY(180deg)')")></a>
</li>
它的作用是讓我點擊彈出頁面上的按鈕,並設置父頁面上的文本被鏡像。問題是它只能使用一次。
我該怎麼做,以便當再次點擊該按鈕時,它將它設置爲rotateY(0deg)
。
或使其成爲切換。
撥動一個附加的類,其執行的旋轉。 – Blazemonger 2014-09-23 20:01:28
@Blazemonger如何?它花了我永遠搞清楚以上的javascript – 2014-09-23 20:03:11