svg中stroke-dashoffset实现简单动效

Posted wskongdesheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了svg中stroke-dashoffset实现简单动效相关的知识,希望对你有一定的参考价值。

属性介绍
stroke-dashoffset
stroke-dashoffset 属性指定了dash模式到路径开始的距离
如果使用了一个 <百分比> 值, 那么这个值就代表了当前viewport的一个百分比。
值可以取为负值
先看效果

<button class="menu__item" style="--bgColorItem: #f54888;">
  <svg class="icon" viewBox="0 0 24 24">
    <path  d="M6.7,4.8h10.7c0.3,0,0.6,0.2,0.7,0.5l2.8,7.3c0,0.1,0,0.2,0,0.3v5.6c0,0.4-0.4,0.8-0.8,0.8H3.8
              C3.4,19.3,3,19,3,18.5v-5.6c0-0.1,0-0.2,0.1-0.3L6,5.3C6.1,5,6.4,4.8,6.7,4.8z"/>
    <path  d="M3.4,12.9H8l1.6,2.8h4.9l1.5-2.8h4.6"/>
  </svg>
</button>
html {

    box-sizing: border-box;
    --bgColorMenu : #1d1d27;
    --duration: .7s;    
    --timeOut: none;
}

html *,
html *::before,
html *::after {
    box-sizing: inherit;
}

body{
    margin: 0;
    display: flex;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: #ffb457;
    -webkit-tap-highlight-color: transparent;
    transition: background-color var(--duration);

}
.menu__item{
    
    all: unset;
    flex-grow: 1;
    z-index: 100;
    display: flex;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    align-items: center;
    will-change: transform;
    justify-content: center;
    padding: 0.55em 0 0.85em;
    transition: transform var(--timeOut , var(--duration));
    
}

.menu__item::before{
    
    content: "";
    z-index: -1;
    width: 4.2em;
    height: 4.2em;
    border-radius: 50%;
    position: absolute;
    transform: scale(1);
    background-color: var(--bgColorItem);
}

.icon{
    width: 2.6em;
    height: 2.6em;
    stroke: white;
    fill: transparent;
    stroke-width: 1pt;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    animation: strok 1.5s infinite;
    animation-direction: reverse;
}

@keyframes strok {

    100% {

        stroke-dashoffset: 400;

    }

}

效果展示

以上是关于svg中stroke-dashoffset实现简单动效的主要内容,如果未能解决你的问题,请参考以下文章

使用snapjs实现svg路径描边动画

SVG学习之stroke-dasharray 和 stroke-dashoffset 详解

SVG stroke-dashoffset 在 safari 上不起作用

svg的圆形进度条

简单的SVG线条动画

玩转SVG线条动画