css3-translate3d-模糊bug - css3怎么解决1px的边框模糊
PHPz
PHPz 2017-04-17 11:28:20
0
3
728

我这个关闭按钮的边框和那个叉叉都会有模糊要怎么解决

<p class="popmidbox">
    <p class="icon_close"></p>
</p>

.popmidbox{
 width:300px; height: 200px;border: 1px solid #ccc;margin: 100px auto;position: relative;
}
.icon_close{
 width: 16px;height: 16px;border-radius: 50%;border:1px solid #CCC;background: #fff;
 padding: 5px;position:absolute;top: -12px;right: -12px;z-index: 2;
}
.icon_close::before{
 content:"";transform: rotate(-45deg);-webkit-transform: rotate(-45deg);
 width: 1px;height: 17px;background: #ccc;overflow: hidden;position: absolute;
 top:5px;left: 13px;
}
.icon_close::after{
 content:"";transform: rotate(45deg);-webkit-transform: rotate(45deg);
 width: 1px;height: 17px;background: #ccc;overflow: hidden;position: absolute;
 top:5px;right: 13px;
}
PHPz
PHPz

学习是最好的投资!

全部回覆(3)
阿神

你這個看起來好 高階(而且也好複雜的樣子)。
現在用SVG畫的邊框,感覺比較容易。

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><line x1='100%' y1='0%' x2='100%' y2='100%' style='stroke:#e5e5e5;stroke-width:1'/><line x1='0%' y1='100%' x2='100%' y2='100%' style='stroke:#e5e5e5;stroke-width:1' /></svg>");
  background-repeat: no-repeat;
  background-position: 0 100%;

右邊框和下邊框

http://codepen.io/charleyw/pen/qbqgQR

刘奇

可以試試將.icon_close裡的所有元素設定為雙倍大小,然後對.icon_closetranform: scale(0.5)縮小一半。

巴扎黑
transform: translateZ(0);

有些效能不是很高的設備,或是效能分配資源太少會這樣。
強制用3D觸發硬體渲染,可能會解決。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!