
css
欲语含羞
这个作者很懒,什么都没留下…
展开
-
CSS实现带小箭头气泡
显示效果如下 .tip { position: fixed; bottom: 19px; right: 32px; width: 100px; height: 40px; background: #fff; box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.1); border-radius: 4px; z-index: 1; display: flex; align-items: center; } .tip::aft原创 2020-08-14 18:31:39 · 1342 阅读 · 0 评论 -
CSS圆圈loading实现+动画
效果如下图所示 <div class="loading"> <div class="left"></div> <div class="right"></div> <div class="progress"></div> </div> body { background: #000; ...原创 2020-03-22 16:32:56 · 2965 阅读 · 0 评论 -
CSS3新特性
边框 border-radius box-shadow border-image 圆角——border-radius 使用一个半径确定圆形半角,使用两个半径确定椭圆半角 即使元素没有边框,圆角也可以应用到background上 border-radius:&lt;length&gt;|&lt;percentage&gt; /*使用方法*/ border-radius:&l...翻译 2018-08-21 14:02:30 · 1064 阅读 · 0 评论