久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<legend id='fYgTm'><style id='fYgTm'><dir id='fYgTm'><q id='fYgTm'></q></dir></style></legend>
    1. <i id='fYgTm'><tr id='fYgTm'><dt id='fYgTm'><q id='fYgTm'><span id='fYgTm'><b id='fYgTm'><form id='fYgTm'><ins id='fYgTm'></ins><ul id='fYgTm'></ul><sub id='fYgTm'></sub></form><legend id='fYgTm'></legend><bdo id='fYgTm'><pre id='fYgTm'><center id='fYgTm'></center></pre></bdo></b><th id='fYgTm'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='fYgTm'><tfoot id='fYgTm'></tfoot><dl id='fYgTm'><fieldset id='fYgTm'></fieldset></dl></div>
      • <bdo id='fYgTm'></bdo><ul id='fYgTm'></ul>

    2. <small id='fYgTm'></small><noframes id='fYgTm'>

      <tfoot id='fYgTm'></tfoot>

        CSS3 變換:旋轉;在 IE9 中

        CSS3 transform: rotate; in IE9(CSS3 變換:旋轉;在 IE9 中)

          <tbody id='WEE0y'></tbody>

        <small id='WEE0y'></small><noframes id='WEE0y'>

        1. <tfoot id='WEE0y'></tfoot>

          <legend id='WEE0y'><style id='WEE0y'><dir id='WEE0y'><q id='WEE0y'></q></dir></style></legend>
            <bdo id='WEE0y'></bdo><ul id='WEE0y'></ul>
          • <i id='WEE0y'><tr id='WEE0y'><dt id='WEE0y'><q id='WEE0y'><span id='WEE0y'><b id='WEE0y'><form id='WEE0y'><ins id='WEE0y'></ins><ul id='WEE0y'></ul><sub id='WEE0y'></sub></form><legend id='WEE0y'></legend><bdo id='WEE0y'><pre id='WEE0y'><center id='WEE0y'></center></pre></bdo></b><th id='WEE0y'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='WEE0y'><tfoot id='WEE0y'></tfoot><dl id='WEE0y'><fieldset id='WEE0y'></fieldset></dl></div>

                  本文介紹了CSS3 變換:旋轉;在 IE9 中的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  在我所做的設計中,我有一個元素需要垂直.我已經得到了可以在除 IE9 之外的所有瀏覽器中使用的 css.我為 IE7 & 使用了過濾器.IE8:

                  I have an element that needs to be vertical in a design I have done. I have got the css for this to work in all browsers except IE9. I used the filter for IE7 & IE8:

                  progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
                  

                  然而,這似乎使我的元素在 IE9 中變得透明,而 CSS3 的轉換"屬性似乎沒有做任何事情!

                  This however seems to render my element transparent in IE9 and the CSS3 'tranform' porperty doesn't seem to do anything!

                  有誰知道 IE9 中的旋轉元素?

                  Does anyone know anyway of rotating elements in IE9?

                  非常感謝您的幫助!

                  W.

                  推薦答案

                  標準的 CSS3 旋轉應該可以在 IE9 中工作,但我相信你需要給它一個供應商前綴,像這樣:

                  Standard CSS3 rotate should work in IE9, but I believe you need to give it a vendor prefix, like so:

                    -ms-transform: rotate(10deg);
                  

                  它可能無法在 beta 版本中運行;如果沒有,請嘗試下載當前的預覽版(預覽版 7),這是 beta 的更高版本.我沒有要測試的 beta 版本,所以我無法確認它是否在那個版本中.最終發布版本肯定會支持它.

                  It is possible that it may not work in the beta version; if not, try downloading the current preview version (preview 7), which is a later revision that the beta. I don't have the beta version to test against, so I can't confirm whether it was in that version or not. The final release version is definitely slated to support it.

                  我還可以確認 IE 特定的 filter 屬性已在 IE9 中被刪除.

                  I can also confirm that the IE-specific filter property has been dropped in IE9.


                  人們要求提供一些進一步的文件.正如他們所說,這是非常有限的,但我確實找到了這個頁面: http://css3please.com/ 這是可用于在所有瀏覽器中測試各種 CSS3 功能.


                  People have asked for some further documentation. As they say, this is quite limited, but I did find this page: http://css3please.com/ which is useful for testing various CSS3 features in all browsers.

                  但在 IE9 預覽版中測試此頁面上的旋轉功能導致它相當嚴重地崩潰.

                  But testing the rotate feature on this page in IE9 preview caused it to crash fairly spectacularly.

                  但是,我在自己的測試頁面中使用 IE9 中的 -ms-transform:rotate() 進行了一些獨立測試,并且工作正常.所以我的結論是該功能已實現,但存在一些錯誤,可能與動態設置有關.

                  However I have done some independant tests using -ms-transform:rotate() in IE9 in my own test pages, and it is working fine. So my conclusion is that the feature is implemented, but has got some bugs, possibly related to setting it dynamically.

                  另一個有用的參考點是 www.canIuse.com ——參見 http://caniuse.com/#search=rotation

                  Another useful reference point for which features are implemented in which browsers is www.canIuse.com -- see http://caniuse.com/#search=rotation


                  恢復這個舊答案是因為我最近發現了一個名為 CSS Sandpaper 與問題相關,可能會使事情變得更容易.


                  Reviving this old answer because I recently found out about a hack called CSS Sandpaper which is relevant to the question and may make things easier.

                  該 hack 實現了對舊版本 IE 的標準 CSS transform 的支持.所以現在您可以將以下內容添加到您的 CSS 中:

                  The hack implements support for the standard CSS transform for for old versions of IE. So now you can add the following to your CSS:

                  -sand-transform: rotate(10deg);
                  

                  ...讓它在 IE 6/7/8 中工作,而無需使用 filter 語法.(當然它仍然在后臺使用過濾器語法,但這使得它更容易管理,因為它使用與其他瀏覽器類似的語法)

                  ...and have it work in IE 6/7/8, without having to use the filter syntax. (of course it still uses the filter syntax behind the scenes, but this makes it a lot easier to manage because it's using similar syntax to other browsers)

                  這篇關于CSS3 變換:旋轉;在 IE9 中的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Selenium WebDriver get text from CSS property quot;contentquot; on a ::before pseudo element(Selenium WebDriver 從 CSS 屬性“內容獲取文本在 ::before 偽元素上)
                  IE https CORS XHR request fails with Script7002: XMLHttpRequest: Network Error 0x2eff(IE https CORS XHR 請求因 Script7002 失敗:XMLHttpRequest:網絡錯誤 0x2eff)
                  CSS Rotate Text Vertical - Extra Space on both sides(CSS垂直旋轉文本 - 兩側的額外空間)
                  Safari CSS Bug: Animation Rotation Direction Incorrect?(Safari CSS Bug:動畫旋轉方向不正確?)
                  Rotating 90 degrees in CSS in IE8 and lower(在 IE8 及更低版本的 CSS 中旋轉 90 度)
                  To rotation an image in canvas using mouse(使用鼠標旋轉畫布中的圖像)
                    <bdo id='GUaO8'></bdo><ul id='GUaO8'></ul>

                        <tbody id='GUaO8'></tbody>
                      • <i id='GUaO8'><tr id='GUaO8'><dt id='GUaO8'><q id='GUaO8'><span id='GUaO8'><b id='GUaO8'><form id='GUaO8'><ins id='GUaO8'></ins><ul id='GUaO8'></ul><sub id='GUaO8'></sub></form><legend id='GUaO8'></legend><bdo id='GUaO8'><pre id='GUaO8'><center id='GUaO8'></center></pre></bdo></b><th id='GUaO8'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='GUaO8'><tfoot id='GUaO8'></tfoot><dl id='GUaO8'><fieldset id='GUaO8'></fieldset></dl></div>

                          <small id='GUaO8'></small><noframes id='GUaO8'>

                          <legend id='GUaO8'><style id='GUaO8'><dir id='GUaO8'><q id='GUaO8'></q></dir></style></legend>
                        1. <tfoot id='GUaO8'></tfoot>

                            主站蜘蛛池模板: 日韩在线观看一区 | 成人国产精品久久久 | 男女羞羞网站 | 黄页网址在线观看 | 亚洲风情在线观看 | 国产一区二区在线91 | 国产精品久久性 | 国产午夜精品一区二区三区在线观看 | 中文字幕在线视频免费观看 | 久久成人免费视频 | 国产一区91精品张津瑜 | 成人在线小视频 | 亚洲成人在线网 | 黄网免费看 | 精品视频久久久 | 97精品国产 | 欧美三级在线 | 亚洲国产一区二区三区 | 永久av | 成人av免费 | 99精品一区二区三区 | 91精品亚洲| 日韩在线观看网站 | 日韩中文在线视频 | www.色综合| 国产精品免费观看 | 九九99精品| 视频一区二区三区中文字幕 | 91视频88av | 国产97在线视频 | 欧美激情第一区 | 色毛片| 欧美精品一区在线 | 久久精品日产第一区二区三区 | 成人精品一区二区三区 | 中文字幕免费中文 | 99re视频 | 成人福利网站 | 日韩欧美国产一区二区三区 | xnxx 日本免费 | 影音先锋成人资源 |