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

        <bdo id='U5csv'></bdo><ul id='U5csv'></ul>

      <tfoot id='U5csv'></tfoot>
    1. <i id='U5csv'><tr id='U5csv'><dt id='U5csv'><q id='U5csv'><span id='U5csv'><b id='U5csv'><form id='U5csv'><ins id='U5csv'></ins><ul id='U5csv'></ul><sub id='U5csv'></sub></form><legend id='U5csv'></legend><bdo id='U5csv'><pre id='U5csv'><center id='U5csv'></center></pre></bdo></b><th id='U5csv'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='U5csv'><tfoot id='U5csv'></tfoot><dl id='U5csv'><fieldset id='U5csv'></fieldset></dl></div>
    2. <small id='U5csv'></small><noframes id='U5csv'>

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

        在 Chrome 中使用 webkit-transform 旋轉(zhuǎn)時出現(xiàn)不穩(wěn)定的

        Wonky text anti-aliasing when rotating with webkit-transform in Chrome(在 Chrome 中使用 webkit-transform 旋轉(zhuǎn)時出現(xiàn)不穩(wěn)定的文本抗鋸齒)

        1. <small id='FouOp'></small><noframes id='FouOp'>

              <bdo id='FouOp'></bdo><ul id='FouOp'></ul>

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

                  <tbody id='FouOp'></tbody>
                <tfoot id='FouOp'></tfoot>
                • <legend id='FouOp'><style id='FouOp'><dir id='FouOp'><q id='FouOp'></q></dir></style></legend>
                  本文介紹了在 Chrome 中使用 webkit-transform 旋轉(zhuǎn)時出現(xiàn)不穩(wěn)定的文本抗鋸齒的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在使用 -webkit-transform: rotate() 旋轉(zhuǎn)一個元素,在 Chrome 14.0.835.2 dev-m 中,它對元素內(nèi)的文本做了一些非常奇怪的事情.它讓我想起了在 Photoshop 中使用平滑"抗鋸齒而不是清晰"旋轉(zhuǎn)文本時獲得的類似效果.

                  I'm rotating an element using -webkit-transform: rotate() and in Chrome 14.0.835.2 dev-m it's doing some really weird stuff to the text inside the element. It reminds me of a similar effect you get in Photoshop when you rotate text using "smooth" anti-aliasing instead of "crisp".

                  有人知道這里發(fā)生了什么嗎?它是特定于這個 webkit 或 Chrome 版本的還是我可以做些什么來修復它?(它也不是對列表元素之間的邊界進行抗鋸齒處理)

                  Anyone know what's going on here? Is it specific to this webkit or Chrome version or is there something I can do to fix it? (It's also not anti-aliasing the borders between list elements)

                  這是 CSS:

                  div.right-column.post-it
                  {
                    position: relative;
                    width: 240px;
                    background-color: #fe9;
                    padding: 20px;
                    -webkit-transform: rotate(.7deg);
                    background: #fe9 -webkit-gradient(radial, 20% 10%, 0, 50% 10%, 500, from(rgba(255,250,220,1)), to(rgba(255,238,253,0)));
                    box-shadow: 1px 1px 0 #ddccaa, 
                              2px 2px 0 #dbcaa8,
                              3px 3px 0 #d9c8a6,
                              4px 4px 0 #d7c6a4,
                              5px 5px 0 #d5c4a2,
                              6px 6px 1px #d3c2a0,
                              4px 4px 2px rgba(90,70,50,.5),
                              8px 8px 3px rgba(90,70,50,.3),
                              12px 12px 5px rgba(90,70,50,.1);
                  }
                  

                  推薦答案

                  嘗試用 webkit 觸發(fā) CSS 3d Transform 模式.這改變了 chrome 的渲染方式

                  Try triggering the CSS 3d Transform mode with webkit. this changes the way chrome renders

                  -webkit-transform: rotate(.7deg) translate3d( 0, 0, 0);
                  

                  <小時>

                  編輯

                  還有一個 Webkit only 樣式聲明 -webkit-font-smoothing 接受值

                  • 亞像素抗鋸齒
                  • 抗鋸齒

                  其中 subpixel-antialiased 是默認值.

                  唉,亞像素抗鋸齒不是旋轉(zhuǎn)文本的好解決方案.渲染機無法處理.3d 變換僅切換為 antialiased.但是我們可以嘗試直接設置.

                  Alas, the subpixel antialias is no good solution for rotated text. The rendering machine cant handle that. The 3d transform switches to just antialiased. But we can try to set it directly.

                  見這里 http://maxvoltar.com/archive/-webkit-font-smoothing

                  這篇關于在 Chrome 中使用 webkit-transform 旋轉(zhuǎn)時出現(xiàn)不穩(wěn)定的文本抗鋸齒的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

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

                  相關文檔推薦

                  WebKit quot;Refused to set unsafe header #39;content-length#39;quot;(WebKit “拒絕設置不安全的標頭‘內(nèi)容長度’)
                  Getting BLOB data from XHR request(從 XHR 請求中獲取 BLOB 數(shù)據(jù))
                  Selenium WebDriver get text from CSS property quot;contentquot; on a ::before pseudo element(Selenium WebDriver 從 CSS 屬性“內(nèi)容獲取文本在 ::before 偽元素上)
                  CSS Rotate Text Vertical - Extra Space on both sides(CSS垂直旋轉(zhuǎn)文本 - 兩側(cè)的額外空間)
                  Safari CSS Bug: Animation Rotation Direction Incorrect?(Safari CSS Bug:動畫旋轉(zhuǎn)方向不正確?)
                  Rotating 90 degrees in CSS in IE8 and lower(在 IE8 及更低版本的 CSS 中旋轉(zhuǎn) 90 度)
                  <tfoot id='XF3Rm'></tfoot>
                        <bdo id='XF3Rm'></bdo><ul id='XF3Rm'></ul>

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

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

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

                          2. 主站蜘蛛池模板: 免费久久久 | 天天狠狠 | 日本高清不卡视频 | 中文天堂在线一区 | www.黄色在线观看 | 亚洲精品久久久9婷婷中文字幕 | www.久| 青青草av网站 | 亚洲精品久久久久久一区二区 | www日日日| 精品久久香蕉国产线看观看亚洲 | 伊人网影院| 九色91视频 | 欧美日一区二区 | 亚洲成人精品免费 | 色综合久久88色综合天天 | 一级黄色片一级黄色片 | 国产免费拔擦拔擦8x高清 | www.免费看片.com | 亚洲三区在线观看 | 国产在线二区 | 免费看a | 欧美一a| 欧美在线视频一区二区 | 偷拍自拍网 | 中文字幕在线中文 | 久久久高清 | 亚洲国产精品一区二区三区 | 国产日韩一区 | 高清一区二区 | 91精品国产91久久久久久 | 亚洲成av人片在线观看无码 | 人人人人干 | 国产中文视频 | 久久亚洲综合 | 日操操 | 国产在线观看一区二区 | 福利影院在线看 | 欧美视频1区 | 国产精品久久精品 | 国产精品毛片 |