创建可以使用 html、css 填充颜色的自定义图形

Posted

技术标签:

【中文标题】创建可以使用 html、css 填充颜色的自定义图形【英文标题】:Creating custom graphics which can be filled with color using html, css 【发布时间】:2015-12-04 22:27:54 【问题描述】:

这个自定义图形需要填充三种不同的颜色。每种颜色都将填充 1-100%。所以蓝色将从腿部填充到头部(1-100%),红色将从头部底部填充到头顶(1-100%),所以橙色。这可以使用 svg / canvas 或任何其他方式吗?

【问题讨论】:

显示你做了什么 在 SVG 中,您可以创建 3 个形状和 3 个彩色矩形并应用剪辑。 【参考方案1】:

CSS动画方法

    用不同的 div 分割三个不同颜色的部分。根据优先级将其放置在 html 中,或者将其设置为 z-index,而不管标记如何。 细分用于创建支架和填充背景的颜色部分。虽然可以使用 :before:after 创建,但我使用了嵌套 div。 创建一个从 0% 高度过渡到 100% 高度的填充关键帧动画。有关填充动画的更多信息可以在这些答案中找到:CSS Wipe up animation animation-delay 之前需要根据你拥有的形状数量来计算。如果第一个形状的动画持续时间为 2 秒,则将下一个形状的动画延迟设置为 2 秒,以创建顺序效果。

操作边框半径、位置、宽度和高度值以获得所需的形状和位置。

编辑:在 Codepen 中使用状态指示器更新

Codepen Demo

body 
  background: lightgray;


/* Red Filler */

.red-filler 
  background: lightgray;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  border: 10px solid white;
  position: relative;
  overflow: hidden;

.red-liquid 
  width: 100%;
  position: absolute;
  bottom: 0;
  animation: fill-up 6s ease forwards;
  animation-timing-function: cubic-bezier(.2, .6, .8, .4);
  background: #E63B44;


/* Orange Filler */

.orange 
  z-index: -1;
  position: absolute;

.orange-filler-1 
  background: lightgray;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  border: 10px solid white;
  position: relative;
  top: -50px;
  overflow: hidden;

.orange-liquid-1 
  width: 100%;
  position: absolute;
  bottom: 0;
  border-bottom-left-radius: 25%;
  border-bottom-right-radius: 25%;
  animation: fill-up 3s ease forwards;
  animation-timing-function: cubic-bezier(.2, .6, .8, .4);
  animation-delay: 3s;
  background: #EC952E;
  overflow: hidden;

.orange-filler-2 
  background: lightgray none repeat scroll 0 0;
  border-bottom-left-radius: 40%;
  border-bottom-right-radius: 40%;
  border-color: white;
  border-image: none;
  border-style: none solid solid;
  border-width: 0 10px 10px;
  height: 100px;
  left: 50px;
  overflow: hidden;
  position: relative;
  top: -74px;
  width: 100px;

.orange-liquid-2 
  animation: fill-up 3s ease forwards;
  animation-timing-function: cubic-bezier(.2, .6, .8, .4);
  background: #EC952E;
  position: absolute;
  bottom: 0;
  width: 100%;


/* Blue Filler */

.blue 
  z-index: -2;
  position: absolute;
  top: 40px;

.blue-filler-1 
  background: lightgray none repeat scroll 0 0;
  border-radius: 50%;
  height: 250px;
  overflow: hidden;
  position: relative;
  width: 260px;
  left: -20px;
  top: -10px;

.blue-liquid-1 
  width: 100%;
  position: absolute;
  bottom: 0;
  border-bottom-left-radius: 40%;
  border-bottom-right-radius: 40%;
  animation: fill-up 2s ease forwards;
  animation-timing-function: cubic-bezier(.2, .6, .8, .4);
  animation-delay: 4s;
  background: #566EB1;
  overflow: hidden;

.blue-filler-2 
  background: lightgray none repeat scroll 0 0;
  border-radius: 50%;
  height: 275px;
  left: -25px;
  overflow: hidden;
  position: relative;
  top: -100px;
  width: 275px;

.blue-liquid-2 
  animation: fill-up 2s ease forwards;
  animation-timing-function: cubic-bezier(.2, .6, .8, .4);
  background: #566EB1;
  position: absolute;
  bottom: 0;
  width: 100%;
  animation-delay: 2s;

.blue-filler-3 
  background: lightgray none repeat scroll 0 0;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  height: 110px;
  left: 35px;
  overflow: hidden;
  position: relative;
  top: -125px;
  width: 150px;

.blue-liquid-3 
  animation: fill-up 2s ease forwards;
  animation-timing-function: cubic-bezier(.2, .6, .8, .4);
  background: #566EB1;
  position: absolute;
  bottom: 0;
  width: 100%;

/* Container for centering */

.container 
  margin: 0 auto;
  width: 500px;
  margin-top: 50px;

/* Animation Keyframe */

@keyframes fill-up 
  0% 
    height: 0;
  
  100% 
    height: 100%;
  
<div class="container">
  
  <!-- Red container -->
  <div class="red">
    <div class="red-filler">
      <div class="red-liquid"></div>
    </div>
  </div>
  
  <!-- Orange container -->
  <div class="orange">
    <div class="orange-filler-1">
      <div class="orange-liquid-1"></div>
    </div>
    <div class="orange-filler-2">
      <div class="orange-liquid-2"></div>
    </div>
  </div>
  
  <!-- Blue container -->
  <div class="blue">
    <div class="blue-filler-1">
      <div class="blue-liquid-1"></div>
    </div>
    <div class="blue-filler-2">
      <div class="blue-liquid-2"></div>
    </div>
    <div class="blue-filler-3">
      <div class="blue-liquid-3"></div>
    </div>
  </div>
  
</div>

【讨论】:

你让我很开心 :) 非常轻松地解决了我的问题,非常感谢 Manoj。坚持下去。 你的评论让我很开心。感谢您的赞赏! :)

以上是关于创建可以使用 html、css 填充颜色的自定义图形的主要内容,如果未能解决你的问题,请参考以下文章

用户生成的自定义 css

如何设置Android中控件的颜色透明度

css如何使div背景图片填充

CSS用颜色填充水平菜单栏

我想在 UIView 上绘制像苹果形状这样的自定义形状

css有没有办法让background填充两种颜色啊?