.animation-land1 path { stroke: #ffffff; stroke-dasharray: 600 0; stroke-dashoffset: 200; stroke-width: 1; animation: draw 7s ease-in-out 1 paused; animation-iteration-count: 1; animation-delay: 2s; } @-webkit-keyframes draw { 0% { stroke-dasharray: 0 800; stroke-dashoffset: 200; fill-opacity: 0; stroke-width: 1; stroke: #1271ef; } 90% { stroke-dasharray: 600 0; stroke-dashoffset: 200; fill-opacity: 0; stroke-width: 1; stroke: #1271ef; } 100% { fill-opacity: 1; stroke-width: 1; stroke: #ffffff; } } @-moz-keyframes draw { 0% { stroke-dasharray: 0 800; stroke-dashoffset: 200; fill-opacity: 0; stroke-width: 1; stroke: #1271ef; } 90% { stroke-dasharray: 600 0; stroke-dashoffset: 200; fill-opacity: 0; stroke-width: 1; stroke: #1271ef; } 100% { fill-opacity: 1; stroke-width: 1; stroke: #fff; } } @keyframes draw { 0% { stroke-dasharray: 0 800; stroke-dashoffset: 200; fill-opacity: 0; stroke-width: 1; stroke: #1271ef; } 90% { stroke-dasharray: 600 0; stroke-dashoffset: 200; fill-opacity: 0; stroke-width: 1; stroke: #1271ef; } 100% { fill-opacity: 1; stroke-width: 1; stroke: #ffffff; } } .st1{ text-anchor: middle; font: 10px Arial; cursor: pointer; fill: '#000000'; stroke: 'none'; } |
|