end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

2021-11-21から1日間の記事一覧

html gridlayout の手習い from dotinstall

https://end0tknr.github.io/sandbox/gridlayout/grid_1.html https://end0tknr.github.io/sandbox/gridlayout/grid_2.html https://end0tknr.github.io/sandbox/gridlayout/grid_3.html https://end0tknr.github.io/sandbox/gridlayout/grid_4.html https:/…

svg の手習い from dotinstall

from dotinstall https://end0tknr.github.io/sandbox/svg/svg_1.html 手習い - line <svg xmlns="http://www.w3.org/2000/svg" width="128" height="16"> <line x1="2" y1="12" x2="126" y2="12" stroke="#20285A" stroke-width="4" stroke-linecap="round"/> </line></svg>

svg で、文字テキストをアニメーションしながら、表示

<svg width="60" height="60"> <defs> <style> @keyframes text-move { 0% { stroke-dashoffset: 300; /* SVG pathが始まる場所 */ stroke: #ff4500; fill: none; } 100% { stroke-dashoffset: 0; /* SVG pathが始まる場所 */ stroke: #FBBC05; fill: #FBBC05; } } .logo_text { font-size: 42px; font</defs></svg>…