test
|
|
@ -461,8 +461,12 @@ func drawConnection(writer io.Writer, labelMaskID string, connection d2target.Co
|
|||
}
|
||||
fmt.Fprintf(writer, out)
|
||||
} else {
|
||||
fmt.Fprintf(writer, `<path d="%s" class="connection" style="fill:none;%s" %s/>`,
|
||||
path, connectionStyle(connection), attrs)
|
||||
animatedClass := ""
|
||||
if connection.Animated {
|
||||
animatedClass = " animated-connection"
|
||||
}
|
||||
fmt.Fprintf(writer, `<path d="%s" class="connection%s" style="fill:none;%s" %s/>`,
|
||||
path, animatedClass, connectionStyle(connection), attrs)
|
||||
}
|
||||
|
||||
if connection.Label != "" {
|
||||
|
|
@ -968,11 +972,14 @@ func connectionStyle(connection d2target.Connection) string {
|
|||
out += fmt.Sprintf(`stroke:%s;`, connection.Stroke)
|
||||
out += fmt.Sprintf(`opacity:%f;`, connection.Opacity)
|
||||
out += fmt.Sprintf(`stroke-width:%d;`, connection.StrokeWidth)
|
||||
if connection.StrokeDash != 0 {
|
||||
dashSize, gapSize := svg.GetStrokeDashAttributes(float64(connection.StrokeWidth), connection.StrokeDash)
|
||||
strokeDash := connection.StrokeDash
|
||||
if strokeDash == 0 && connection.Animated {
|
||||
strokeDash = 5
|
||||
}
|
||||
if strokeDash != 0 {
|
||||
dashSize, gapSize := svg.GetStrokeDashAttributes(float64(connection.StrokeWidth), strokeDash)
|
||||
out += fmt.Sprintf(`stroke-dasharray:%f,%f;`, dashSize, gapSize)
|
||||
}
|
||||
|
||||
return out
|
||||
}
|
||||
|
||||
|
|
@ -1015,6 +1022,27 @@ func embedFonts(buf *bytes.Buffer, fontFamily *d2fonts.FontFamily) {
|
|||
}
|
||||
}
|
||||
|
||||
triggers = []string{
|
||||
`animated-connection`,
|
||||
}
|
||||
|
||||
for _, t := range triggers {
|
||||
if strings.Contains(content, t) {
|
||||
buf.WriteString(`
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
.animated-connection {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}`)
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
triggers = []string{
|
||||
`appendix-icon`,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,15 +10,3 @@
|
|||
mix-blend-mode: multiply;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1764,6 +1764,13 @@ e <--> f: {
|
|||
}
|
||||
}`,
|
||||
},
|
||||
{
|
||||
name: "animated",
|
||||
script: `
|
||||
your love life will be -> happy: { style.animated: true }
|
||||
your love life will be -> harmonious: { style.animated: true }
|
||||
`,
|
||||
},
|
||||
}
|
||||
|
||||
runa(t, tcs)
|
||||
|
|
|
|||
|
|
@ -18,18 +18,6 @@ width="2832" height="441" viewBox="-102 -102 2832 441"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 795 KiB After Width: | Height: | Size: 795 KiB |
|
|
@ -18,18 +18,6 @@ width="2737" height="491" viewBox="-90 -90 2737 491"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 795 KiB After Width: | Height: | Size: 795 KiB |
|
|
@ -18,18 +18,6 @@ width="1431" height="572" viewBox="-102 -102 1431 572"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 328 KiB After Width: | Height: | Size: 328 KiB |
|
|
@ -18,18 +18,6 @@ width="1231" height="572" viewBox="-90 -90 1231 572"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 328 KiB After Width: | Height: | Size: 328 KiB |
|
|
@ -18,18 +18,6 @@ width="1698" height="1876" viewBox="-102 -102 1698 1876"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 800 KiB After Width: | Height: | Size: 800 KiB |
|
|
@ -18,18 +18,6 @@ width="1829" height="1943" viewBox="-90 -90 1829 1943"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 800 KiB After Width: | Height: | Size: 799 KiB |
|
|
@ -18,18 +18,6 @@ width="492" height="332" viewBox="-102 -102 492 332"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 1.8 KiB |
|
|
@ -18,18 +18,6 @@ width="452" height="332" viewBox="-90 -90 452 332"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 1.8 KiB |
|
|
@ -18,18 +18,6 @@ width="1540" height="578" viewBox="-102 -102 1540 578"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 664 KiB After Width: | Height: | Size: 664 KiB |
|
|
@ -18,18 +18,6 @@ width="1350" height="633" viewBox="-90 -90 1350 633"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 664 KiB After Width: | Height: | Size: 664 KiB |
|
|
@ -18,18 +18,6 @@ width="366" height="552" viewBox="-100 -100 366 552"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 325 KiB After Width: | Height: | Size: 325 KiB |
|
|
@ -18,18 +18,6 @@ width="366" height="552" viewBox="-88 -88 366 552"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 325 KiB After Width: | Height: | Size: 325 KiB |
|
|
@ -18,18 +18,6 @@ width="277" height="242" viewBox="-102 -102 277 242"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 182 KiB After Width: | Height: | Size: 182 KiB |
|
|
@ -18,18 +18,6 @@ width="277" height="242" viewBox="-90 -90 277 242"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 182 KiB After Width: | Height: | Size: 182 KiB |
|
|
@ -18,18 +18,6 @@ width="1286" height="548" viewBox="-102 -102 1286 548"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 509 KiB After Width: | Height: | Size: 508 KiB |
|
|
@ -18,18 +18,6 @@ width="1286" height="548" viewBox="-90 -90 1286 548"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 509 KiB After Width: | Height: | Size: 508 KiB |
|
|
@ -18,18 +18,6 @@ width="1825" height="777" viewBox="-102 -102 1825 777"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 796 KiB After Width: | Height: | Size: 796 KiB |
|
|
@ -18,18 +18,6 @@ width="1609" height="1027" viewBox="-90 -90 1609 1027"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 796 KiB After Width: | Height: | Size: 796 KiB |
|
|
@ -18,18 +18,6 @@ width="394" height="356" viewBox="-102 -102 394 356"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 325 KiB After Width: | Height: | Size: 324 KiB |
|
|
@ -18,18 +18,6 @@ width="394" height="356" viewBox="-90 -90 394 356"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 325 KiB After Width: | Height: | Size: 324 KiB |
|
|
@ -18,18 +18,6 @@ width="648" height="1340" viewBox="-100 -100 648 1340"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 329 KiB After Width: | Height: | Size: 329 KiB |
|
|
@ -18,18 +18,6 @@ width="648" height="1340" viewBox="-88 -88 648 1340"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 329 KiB After Width: | Height: | Size: 329 KiB |
|
|
@ -18,18 +18,6 @@ width="604" height="458" viewBox="-78 -28 604 458"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 326 KiB After Width: | Height: | Size: 326 KiB |
|
|
@ -18,18 +18,6 @@ width="604" height="458" viewBox="-78 -28 604 458"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 326 KiB After Width: | Height: | Size: 326 KiB |
|
|
@ -18,18 +18,6 @@ width="377" height="798" viewBox="-78 -28 377 798"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 327 KiB After Width: | Height: | Size: 327 KiB |
|
|
@ -18,18 +18,6 @@ width="377" height="798" viewBox="-78 -28 377 798"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 327 KiB After Width: | Height: | Size: 327 KiB |
|
|
@ -18,18 +18,6 @@ width="1392" height="312" viewBox="-102 -102 1392 312"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 328 KiB After Width: | Height: | Size: 328 KiB |
|
|
@ -18,18 +18,6 @@ width="1352" height="312" viewBox="-90 -90 1352 312"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 328 KiB After Width: | Height: | Size: 328 KiB |
|
|
@ -18,18 +18,6 @@ width="626" height="1028" viewBox="-102 -102 626 1028"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 513 KiB After Width: | Height: | Size: 512 KiB |
|
|
@ -18,18 +18,6 @@ width="626" height="1028" viewBox="-90 -90 626 1028"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 512 KiB After Width: | Height: | Size: 512 KiB |
|
|
@ -18,18 +18,6 @@ width="490" height="556" viewBox="-102 -102 490 556"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 326 KiB After Width: | Height: | Size: 326 KiB |
|
|
@ -18,18 +18,6 @@ width="450" height="556" viewBox="-90 -90 450 556"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 326 KiB After Width: | Height: | Size: 326 KiB |
|
|
@ -18,18 +18,6 @@ width="317" height="556" viewBox="-102 -102 317 556"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 325 KiB After Width: | Height: | Size: 325 KiB |
|
|
@ -18,18 +18,6 @@ width="317" height="556" viewBox="-90 -90 317 556"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 325 KiB After Width: | Height: | Size: 325 KiB |
|
|
@ -18,18 +18,6 @@ width="418" height="756" viewBox="-102 -102 418 756"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 650 KiB After Width: | Height: | Size: 650 KiB |
|
|
@ -18,18 +18,6 @@ width="468" height="866" viewBox="-90 -90 468 866"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 650 KiB After Width: | Height: | Size: 649 KiB |
|
|
@ -18,18 +18,6 @@ width="317" height="577" viewBox="-102 -102 317 577"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 468 KiB After Width: | Height: | Size: 468 KiB |
|
|
@ -18,18 +18,6 @@ width="317" height="677" viewBox="-90 -90 317 677"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 468 KiB After Width: | Height: | Size: 468 KiB |
|
|
@ -18,18 +18,6 @@ width="200" height="200" viewBox="-100 -100 200 200"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.3 KiB |
|
|
@ -18,18 +18,6 @@ width="200" height="200" viewBox="-100 -100 200 200"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.3 KiB |
|
|
@ -18,18 +18,6 @@ width="1543" height="828" viewBox="-102 -102 1543 828"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 335 KiB After Width: | Height: | Size: 335 KiB |
|
|
@ -18,18 +18,6 @@ width="1343" height="828" viewBox="-90 -90 1343 828"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 335 KiB After Width: | Height: | Size: 334 KiB |
|
|
@ -18,18 +18,6 @@ width="1543" height="828" viewBox="-102 -102 1543 828"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 340 KiB After Width: | Height: | Size: 340 KiB |
|
|
@ -18,18 +18,6 @@ width="1343" height="828" viewBox="-90 -90 1343 828"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 339 KiB After Width: | Height: | Size: 339 KiB |
|
|
@ -18,18 +18,6 @@ width="1543" height="828" viewBox="-102 -102 1543 828"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 336 KiB After Width: | Height: | Size: 336 KiB |
|
|
@ -18,18 +18,6 @@ width="1343" height="828" viewBox="-90 -90 1343 828"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 336 KiB After Width: | Height: | Size: 336 KiB |
224
e2etests/testdata/stable/animated/dagre/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,224 @@
|
|||
{
|
||||
"name": "",
|
||||
"fontFamily": "SourceSansPro",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "your love life will be",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 66,
|
||||
"y": 0
|
||||
},
|
||||
"width": 247,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#F7F8FE",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "your love life will be",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 147,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "happy",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 226
|
||||
},
|
||||
"width": 149,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#F7F8FE",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "happy",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 49,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "harmonious",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 209,
|
||||
"y": 226
|
||||
},
|
||||
"width": 190,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#F7F8FE",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "harmonious",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 90,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "(your love life will be -> happy)[0]",
|
||||
"src": "your love life will be",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "happy",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 125.27433628318585,
|
||||
"y": 126
|
||||
},
|
||||
{
|
||||
"x": 84.65486725663717,
|
||||
"y": 166
|
||||
},
|
||||
{
|
||||
"x": 74.5,
|
||||
"y": 186
|
||||
},
|
||||
{
|
||||
"x": 74.5,
|
||||
"y": 226
|
||||
}
|
||||
],
|
||||
"isCurve": true,
|
||||
"animated": true,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 0
|
||||
},
|
||||
{
|
||||
"id": "(your love life will be -> harmonious)[0]",
|
||||
"src": "your love life will be",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "harmonious",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 253.22566371681415,
|
||||
"y": 126
|
||||
},
|
||||
{
|
||||
"x": 293.84513274336285,
|
||||
"y": 166
|
||||
},
|
||||
{
|
||||
"x": 304,
|
||||
"y": 186
|
||||
},
|
||||
{
|
||||
"x": 304,
|
||||
"y": 226
|
||||
}
|
||||
],
|
||||
"isCurve": true,
|
||||
"animated": true,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
62
e2etests/testdata/stable/animated/dagre/sketch.exp.svg
vendored
Normal file
|
After Width: | Height: | Size: 326 KiB |
214
e2etests/testdata/stable/animated/elk/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,214 @@
|
|||
{
|
||||
"name": "",
|
||||
"fontFamily": "SourceSansPro",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "your love life will be",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 111,
|
||||
"y": 12
|
||||
},
|
||||
"width": 247,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#F7F8FE",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "your love life will be",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 147,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "happy",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"y": 238
|
||||
},
|
||||
"width": 149,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#F7F8FE",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "happy",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 49,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
},
|
||||
{
|
||||
"id": "harmonious",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 181,
|
||||
"y": 238
|
||||
},
|
||||
"width": 190,
|
||||
"height": 126,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "#F7F8FE",
|
||||
"stroke": "#0D32B2",
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "harmonious",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#0A0F25",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 90,
|
||||
"labelHeight": 26,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"connections": [
|
||||
{
|
||||
"id": "(your love life will be -> happy)[0]",
|
||||
"src": "your love life will be",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "happy",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 193.66666666666669,
|
||||
"y": 138
|
||||
},
|
||||
{
|
||||
"x": 193.66666666666669,
|
||||
"y": 188
|
||||
},
|
||||
{
|
||||
"x": 86.5,
|
||||
"y": 188
|
||||
},
|
||||
{
|
||||
"x": 86.5,
|
||||
"y": 238
|
||||
}
|
||||
],
|
||||
"animated": true,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 0
|
||||
},
|
||||
{
|
||||
"id": "(your love life will be -> harmonious)[0]",
|
||||
"src": "your love life will be",
|
||||
"srcArrow": "none",
|
||||
"srcLabel": "",
|
||||
"dst": "harmonious",
|
||||
"dstArrow": "triangle",
|
||||
"dstLabel": "",
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"stroke": "#0D32B2",
|
||||
"label": "",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "#676C7E",
|
||||
"italic": true,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"labelPosition": "",
|
||||
"labelPercentage": 0,
|
||||
"route": [
|
||||
{
|
||||
"x": 276,
|
||||
"y": 138
|
||||
},
|
||||
{
|
||||
"x": 276,
|
||||
"y": 238
|
||||
}
|
||||
],
|
||||
"animated": true,
|
||||
"tooltip": "",
|
||||
"icon": null,
|
||||
"zIndex": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
62
e2etests/testdata/stable/animated/elk/sketch.exp.svg
vendored
Normal file
|
After Width: | Height: | Size: 326 KiB |
|
|
@ -18,18 +18,6 @@ width="494" height="793" viewBox="-108 -107 494 793"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 472 KiB |
|
|
@ -18,18 +18,6 @@ width="447" height="843" viewBox="-96 -95 447 843"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 472 KiB |
|
|
@ -18,18 +18,6 @@ width="401" height="577" viewBox="-100 -102 401 577"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 469 KiB After Width: | Height: | Size: 469 KiB |
|
|
@ -18,18 +18,6 @@ width="401" height="677" viewBox="-88 -90 401 677"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 469 KiB After Width: | Height: | Size: 468 KiB |
|
|
@ -18,18 +18,6 @@ width="1522" height="1008" viewBox="-102 -102 1522 1008"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 332 KiB After Width: | Height: | Size: 332 KiB |
|
|
@ -18,18 +18,6 @@ width="1242" height="1008" viewBox="-90 -90 1242 1008"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 333 KiB After Width: | Height: | Size: 332 KiB |
|
|
@ -18,18 +18,6 @@ width="650" height="677" viewBox="-102 -102 650 677"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 794 KiB After Width: | Height: | Size: 794 KiB |
|
|
@ -18,18 +18,6 @@ width="634" height="953" viewBox="-90 -90 634 953"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 794 KiB After Width: | Height: | Size: 794 KiB |
|
|
@ -18,18 +18,6 @@ width="1331" height="1939" viewBox="-102 -102 1331 1939"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 812 KiB After Width: | Height: | Size: 812 KiB |
|
|
@ -18,18 +18,6 @@ width="1275" height="2738" viewBox="-90 -90 1275 2738"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 813 KiB After Width: | Height: | Size: 813 KiB |
|
|
@ -18,18 +18,6 @@ width="698" height="630" viewBox="-102 -102 698 630"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 651 KiB After Width: | Height: | Size: 650 KiB |
|
|
@ -18,18 +18,6 @@ width="778" height="885" viewBox="-90 -90 778 885"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 650 KiB After Width: | Height: | Size: 650 KiB |
|
|
@ -18,18 +18,6 @@ width="317" height="782" viewBox="-102 -102 317 782"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 326 KiB After Width: | Height: | Size: 326 KiB |
|
|
@ -18,18 +18,6 @@ width="317" height="782" viewBox="-90 -90 317 782"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 326 KiB After Width: | Height: | Size: 326 KiB |
|
|
@ -18,18 +18,6 @@ width="626" height="572" viewBox="-102 -102 626 572"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 185 KiB After Width: | Height: | Size: 185 KiB |
|
|
@ -18,18 +18,6 @@ width="626" height="572" viewBox="-90 -90 626 572"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 185 KiB After Width: | Height: | Size: 185 KiB |
|
|
@ -18,18 +18,6 @@ width="959" height="822" viewBox="-102 -102 959 822"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 508 KiB After Width: | Height: | Size: 508 KiB |
|
|
@ -18,18 +18,6 @@ width="959" height="822" viewBox="-90 -90 959 822"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 508 KiB After Width: | Height: | Size: 508 KiB |
|
|
@ -18,18 +18,6 @@ width="498" height="1182" viewBox="-102 -102 498 1182"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 651 KiB After Width: | Height: | Size: 651 KiB |
|
|
@ -18,18 +18,6 @@ width="618" height="1407" viewBox="-90 -90 618 1407"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 651 KiB After Width: | Height: | Size: 650 KiB |
|
|
@ -18,18 +18,6 @@ width="1410" height="747" viewBox="-643 -143 1410 747"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 663 KiB After Width: | Height: | Size: 663 KiB |
|
|
@ -18,18 +18,6 @@ width="1410" height="747" viewBox="-631 -131 1410 747"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 663 KiB After Width: | Height: | Size: 662 KiB |
|
|
@ -18,18 +18,6 @@ width="655" height="1078" viewBox="-102 -172 655 1078"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 663 KiB After Width: | Height: | Size: 662 KiB |
|
|
@ -18,18 +18,6 @@ width="615" height="1078" viewBox="-90 -160 615 1078"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 663 KiB After Width: | Height: | Size: 662 KiB |
|
|
@ -18,18 +18,6 @@ width="790" height="1534" viewBox="-102 -102 790 1534"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 652 KiB After Width: | Height: | Size: 652 KiB |
|
|
@ -18,18 +18,6 @@ width="756" height="1350" viewBox="-90 -90 756 1350"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 652 KiB After Width: | Height: | Size: 652 KiB |
|
|
@ -18,18 +18,6 @@ width="837" height="782" viewBox="-102 -102 837 782"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 332 KiB After Width: | Height: | Size: 332 KiB |
|
|
@ -18,18 +18,6 @@ width="717" height="782" viewBox="-90 -90 717 782"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 332 KiB After Width: | Height: | Size: 332 KiB |
|
|
@ -18,18 +18,6 @@ width="1594" height="1686" viewBox="-102 -102 1594 1686"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 336 KiB After Width: | Height: | Size: 336 KiB |
|
|
@ -18,18 +18,6 @@ width="1014" height="2362" viewBox="-88 -90 1014 2362"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 337 KiB After Width: | Height: | Size: 337 KiB |
|
|
@ -18,18 +18,6 @@ width="2546" height="1108" viewBox="-102 -102 2546 1108"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 659 KiB After Width: | Height: | Size: 659 KiB |
|
|
@ -18,18 +18,6 @@ width="1757" height="1660" viewBox="-90 -90 1757 1660"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 659 KiB After Width: | Height: | Size: 659 KiB |
|
|
@ -18,18 +18,6 @@ width="1025" height="1660" viewBox="-102 -102 1025 1660"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 656 KiB After Width: | Height: | Size: 655 KiB |
|
|
@ -18,18 +18,6 @@ width="618" height="3342" viewBox="-90 -90 618 3342"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 655 KiB After Width: | Height: | Size: 655 KiB |
|
|
@ -18,18 +18,6 @@ width="349" height="577" viewBox="-102 -102 349 577"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 468 KiB After Width: | Height: | Size: 468 KiB |
|
|
@ -18,18 +18,6 @@ width="349" height="677" viewBox="-90 -90 349 677"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 468 KiB After Width: | Height: | Size: 468 KiB |
|
|
@ -18,18 +18,6 @@ width="2364" height="698" viewBox="-102 -102 2364 698"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 472 KiB |
|
|
@ -18,18 +18,6 @@ width="2043" height="797" viewBox="-90 -90 2043 797"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 472 KiB |
|
|
@ -18,18 +18,6 @@ width="3255" height="5504" viewBox="-102 -102 3255 5504"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 994 KiB After Width: | Height: | Size: 994 KiB |
|
|
@ -18,18 +18,6 @@ width="3255" height="5504" viewBox="-90 -90 3255 5504"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 994 KiB After Width: | Height: | Size: 994 KiB |
12
e2etests/testdata/stable/hr/dagre/sketch.exp.svg
vendored
|
|
@ -18,18 +18,6 @@ width="942" height="790" viewBox="-102 -102 942 790"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 661 KiB After Width: | Height: | Size: 661 KiB |
12
e2etests/testdata/stable/hr/elk/sketch.exp.svg
vendored
|
|
@ -18,18 +18,6 @@ width="942" height="790" viewBox="-90 -90 942 790"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 661 KiB After Width: | Height: | Size: 661 KiB |
|
|
@ -18,18 +18,6 @@ width="344" height="356" viewBox="-102 -102 344 356"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 325 KiB After Width: | Height: | Size: 324 KiB |
|
|
@ -18,18 +18,6 @@ width="344" height="356" viewBox="-90 -90 344 356"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 325 KiB After Width: | Height: | Size: 324 KiB |
|
|
@ -18,18 +18,6 @@ width="332" height="615" viewBox="-102 -102 332 615"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 326 KiB After Width: | Height: | Size: 325 KiB |
|
|
@ -18,18 +18,6 @@ width="332" height="615" viewBox="-90 -90 332 615"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 326 KiB After Width: | Height: | Size: 325 KiB |
|
|
@ -18,18 +18,6 @@ width="1015" height="4587" viewBox="-102 -102 1015 4587"><style type="text/css">
|
|||
opacity: 0.5;
|
||||
}
|
||||
|
||||
|
||||
@keyframes dashdraw {
|
||||
from {
|
||||
stroke-dashoffset: 30;
|
||||
}
|
||||
}
|
||||
|
||||
path[stroke-dasharray] {
|
||||
stroke-dasharray: 15 15;
|
||||
animation: dashdraw 0.5s linear infinite;
|
||||
}
|
||||
|
||||
]]>
|
||||
</style><script type="application/javascript"><![CDATA[window.addEventListener("DOMContentLoaded", () => {
|
||||
if (document.documentElement.getAttribute("id") !== "d2-svg") {
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 814 KiB After Width: | Height: | Size: 814 KiB |