css秘密花园一
程序员文章站
2022-03-02 11:01:12
css秘密花园 1.透明边框 2.css多重边框 3.css内圆角 4.滚动的进度条 5.一像素横线 主要是手机端问题,有时候1px不是1px 使用box-show 配合transform: scale(.5) translateZ(0) 参考地址 https://lhammer.cn/You-ne ......
css秘密花园
1.透明边框
<style> div{ width: 120px; height: 60px; margin: 30px auto; background: pink; border: 10px solid hsla(0, 0%, 100%, .5) } </style> <body> <main> <div></div> </main> </body>
2.css多重边框
<style> div{ width: 60px; height: 60px; margin: 50px auto; background: pink; border-radius: 50%; box-shadow: 0 0 0 10px #ccc,0 0 0 20px #777, 0 0 0 30px #ccc,0 0 0 40px #777; } </style> <body> <main> <div></div> </main> </body>
<style> div{ width: 120px; height: 60px; margin: 50px auto; background: pink; border: 10px solid #ccc; outline: 10px solid #ccc; outline-offset: -30px; } </style> <body> <main> <div></div> </main> </body
3.css内圆角
<style> div{ width: 120px; height: 60px; margin: 50px auto; background: pink; border: 5px solid #cccccc; border-radius: 15px; outline: 5px solid #ccc; outline-offset: -5px; } </style> <body> <main> <div></div> </main> </body>
<style> div{ width: 120px; height: 60px; margin: 50px auto; background: pink; border-radius: 8px; outline: 5px solid #ccc; box-shadow: 0 0 0 3px #ccc; } </style> <body> <main> <div></div> </main> </body>
4.滚动的进度条
<style> main{ width: 800px; height: 60px; margin: 50px auto; } .progress-bar{ width: 100%; height: 12px; border-radius: 6px; overflow: hidden; position: relative; } .progress-enter{ height: inherit; background:pink; opacity: .5; } .progress-bg{ width: 60%; height: inherit; border-radius: 6px; background: repeating-linear-gradient(-45deg,#d9cfbb 25%,#c3b393 0, #c3b393 50%, #d9cfbb 0, #d9cfbb 75%, #c3b393 0); /* 背景斑马条纹 */ background-size: 16px 16px; animation: panoramic 20s linear infinite; /* animation 参数依次是 动画名称,一个动画周期持续事件 ,infinite代表循环播放 linear直线*/ } @keyframes panoramic { to{ background-position: 200% 0; } } </style> <body> <main> <div class="progress-bar"> <div class="progress-enter"> <div class="progress-bg"></div> </div> </div> </main> </body>
会动的
5.一像素横线 主要是手机端问题,有时候1px不是1px
使用box-show 配合transform: scale(.5) translatez(0)
<style> main{ width: 800px; height: 60px; margin: 50px auto; display: flex; } span{ width: 100%; position: relative; } span::after{ content: ''; width: 100%; position: absolute; box-shadow: 0 0 0 1px #b4a078; transform-origin: 0 bottom; transform: scale(.5) translatez(0); } @media (min-resolution: 2dppx){ span::after{ box-shadow: 0 0 0 .5px #b4a078; } } @media (min-resolution: 3dppx){ span::after{ box-shadow: 0 0 0 .3333px #b4a078; } } </style> <body> <main> <span> </span> </main> </body>
参考地址 https://lhammer.cn/you-need-to-know-css/#/translucent-borders
上一篇: Extensions for Vue
下一篇: Head Html Css 第二版笔记
推荐阅读
-
HTML自学入门一_html/css_WEB-ITnose
-
基于CSS3的animation属性实现微信拍一拍动画效果
-
如何使用css3实现一个类在线直播的队列动画的示例代码
-
应该怎样进一步学习写样式_html/css_WEB-ITnose
-
安利一篇自己大学以来的反思,希望看到此文的朋友们能有些感触_html/css_WEB-ITnose
-
js css等静态文件版本控制,一处配置多处更新.net版【原创】
-
在一个div里面嵌套1个labal和2个div,如何用css实现:labal和第一个div显示在一行,第2个div显示在第2行,并且和第1个div左对齐?_html/css_WEB-ITnose
-
CSS伪类:empty让我眼前一亮(实例代码)
-
UIWebView解决加载页面时背景一片空白问题_html/css_WEB-ITnose
-
使用 CSS & jQuery 制作一款漂亮的多彩时钟_html/css_WEB-ITnose