公众号中的SVG特效多是用编辑器做的,收费的效果,一般很少有。
现在感觉都是抄,要不就是用python扒,最近在看《黑客与画家》,看完后,再来分享心得。
今天先发一个SVG文字弹幕的样式吧。
<svg width="100%" height="25" xmlns="http://www.w3.org/2000/svg">
<g>
<text font-family="microsoft yahei,sans-serif" font-size="20" y="20" x="100%" fill="#898989">
前方高能٩(。•́‿•̀。)۶
<animate attributename="x" from="100%" to="-200" begin="0s" dur="3s" repeatcount="indefinite"></animate>
</text>
</g>
</svg>
网友评论