小编Chl*_*loé的帖子

SVG图像CSS3动画

我需要在无限的CSS3动画中使我的泡泡聊天的第一个点可见且不可见.

带点的语音布雷

为什么我的代码不起作用?

@keyframes onoff {
  0% { display: none; }
  25% { display: block; }
  50% { display: none; }
  100% { display: block; }
}
#circle1 {
  animation: onoff 5s infinite;
}
Run Code Online (Sandbox Code Playgroud)
<svg xmlns="http://www.w3.org/2000/svg" width="240" height="240" viewBox="0 0 24 24">
  <g stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" fill="none">
    <path d="M.5 16.5c0 .553.447 1 1 1h2v4l4-4h15c.552 0 1-.447 1-1v-13c0-.553-.448-1-1-1h-21c-.553 0-1 .447-1 1v13z" />


    <!--Annimation on this cicle-->

    <circle id="circle1" cx="8.5" cy="10" r=".5" />

    <!-- -->

    <circle id="circle2" cx="16.5" cy="10" r=".5" />
    <circle …
Run Code Online (Sandbox Code Playgroud)

css svg css3 css-animations

4
推荐指数
1
解决办法
173
查看次数

标签 统计

css ×1

css-animations ×1

css3 ×1

svg ×1