aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/css/css_transitions/using_css_transitions/index.html
diff options
context:
space:
mode:
authorYujiSoftware <yuji.software+github@gmail.com>2022-03-02 20:01:54 +0900
committerIrvin <irvinfly@gmail.com>2022-03-04 01:02:45 +0800
commitc46e9da7f68bd682fc9ff1452b7fe63df1227151 (patch)
treefe6c6e20521b16a22ec64755b88a39effd81a4d7 /files/zh-tw/web/css/css_transitions/using_css_transitions/index.html
parente671353fc364cef89441d031e0e8b9300b67951b (diff)
downloadtranslated-content-c46e9da7f68bd682fc9ff1452b7fe63df1227151.tar.gz
translated-content-c46e9da7f68bd682fc9ff1452b7fe63df1227151.tar.bz2
translated-content-c46e9da7f68bd682fc9ff1452b7fe63df1227151.zip
Migrate to Compat macro (zh-tw)
Diffstat (limited to 'files/zh-tw/web/css/css_transitions/using_css_transitions/index.html')
-rw-r--r--files/zh-tw/web/css/css_transitions/using_css_transitions/index.html64
1 files changed, 2 insertions, 62 deletions
diff --git a/files/zh-tw/web/css/css_transitions/using_css_transitions/index.html b/files/zh-tw/web/css/css_transitions/using_css_transitions/index.html
index ad2277bb19..59d1ec957b 100644
--- a/files/zh-tw/web/css/css_transitions/using_css_transitions/index.html
+++ b/files/zh-tw/web/css/css_transitions/using_css_transitions/index.html
@@ -304,68 +304,8 @@ translation_of: Web/CSS/CSS_Transitions/Using_CSS_transitions
}
</pre>
<p>  這裡的機制很簡單,我們找到 "slideLeft" 而後將他改變成 "slideRight",接著動畫便結束。倘若此時並沒有 "slideLeft",就表示已在右端點,於是執行反向動作。</p>
- <h2 id="瀏覽器的支援情形">瀏覽器的支援情形</h2>
- <p>{{ CompatibilityTable() }}</p>
- <div id="compat-desktop">
- <table class="compat-table">
- <tbody>
- <tr>
- <th>Feature</th>
- <th>Chrome</th>
- <th>Firefox (Gecko)</th>
- <th>Internet Explorer</th>
- <th>Opera</th>
- <th>Safari (WebKit)</th>
- </tr>
- <tr>
- <td>Basic support</td>
- <td>1.0</td>
- <td>{{ CompatGeckoDesktop("2") }}</td>
- <td>10</td>
- <td>10.5</td>
- <td>3.2</td>
- </tr>
- <tr>
- <td>Property</td>
- <td><code>-webkit-transition</code></td>
- <td><code>-moz-transition</code></td>
- <td><code>-ms-transition</code></td>
- <td><code>-o-transition</code></td>
- <td><code>-webkit-transition</code></td>
- </tr>
- <tr>
- <td>Transition ended event</td>
- <td><code>webkitTransitionEnd</code></td>
- <td><code>transitionend</code></td>
- <td><code>MSTransitionEnd</code></td>
- <td><code>oTransitionEnd</code></td>
- <td><code>webkitTransitionEnd</code></td>
- </tr>
- </tbody>
- </table>
- </div>
- <div id="compat-mobile">
- <table class="compat-table">
- <tbody>
- <tr>
- <th>Feature</th>
- <th>Android</th>
- <th>Firefox Mobile (Gecko)</th>
- <th>IE Phone</th>
- <th>Opera Mobile</th>
- <th>Safari Mobile</th>
- </tr>
- <tr>
- <td>Basic support</td>
- <td>2.1</td>
- <td>{{ CompatGeckoMobile("2") }}</td>
- <td>{{ CompatUnknown() }}</td>
- <td>10</td>
- <td>3.2</td>
- </tr>
- </tbody>
- </table>
- </div>
+
+
<h2 id="更多資訊">更多資訊</h2>
<ul>
<li><a class="external" href="http://dev.w3.org/csswg/css3-transitions/">CSS Transitions</a></li>