Dashed border animation in css3 animation

前端 未结 7 1040
生来不讨喜
生来不讨喜 2020-11-29 06:41

I saw this article http://tympanus.net/Tutorials/BorderAnimationSVG/

I want to add this in my WP blog. So that each new post div have this animation on its border. B

7条回答
  •  没有蜡笔的小新
    2020-11-29 07:10

    based on answer of harry

    this can animate all shapes with all sizes

    div{
    margin:10px;
    }
    .size1{
    background:black;
    width:100px;
    height:100px;
    }
    
    .size2{
    background:black;
    width:300px;
    height:100px;
    }
    
    
    .active-animatioon {
        background-image: linear-gradient(90deg, silver 50%, transparent 50%), linear-gradient(90deg, silver 50%, transparent 50%), linear-gradient(0deg, silver 50%, transparent 50%), linear-gradient(0deg, silver 50%, transparent 50%);
        background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
        background-size: 15px 2px, 15px 2px, 2px 15px, 2px 15px;
        background-position: left top, right bottom, left bottom, right   top;
        animation: border-dance 1s infinite linear;
      }
      @keyframes border-dance {
        0% {
          background-position: left top, right bottom, left bottom, right   top;
        }
        100% {
          background-position: left 15px top, right 15px bottom , left bottom 15px , right   top 15px;
        }
      }
    }

提交回复
热议问题