Cytoscape.js 可以将css动画添加到cytoscape

Cytoscape.js 可以将css动画添加到cytoscape,cytoscape.js,Cytoscape.js,我正在尝试创建一个动画流程图,其中数据流路径必须以动画形式显示,类似于 我想知道这在cytoscape或任何其他推荐的库中是否可行。 我的目标是使用动画流程图在reveal.js中创建演示文稿 .animation-slow{ animation: arc-animation 100s linear infinite; } .animation-medium{ animation: arc-animation 50s linear infinite; } .animation-fast{ ani

我正在尝试创建一个动画流程图,其中数据流路径必须以动画形式显示,类似于

我想知道这在cytoscape或任何其他推荐的库中是否可行。 我的目标是使用动画流程图在reveal.js中创建演示文稿

.animation-slow{ animation: arc-animation 100s linear infinite; }
.animation-medium{ animation: arc-animation 50s linear infinite; }
.animation-fast{ animation: arc-animation 10s linear infinite; }

.animation{
  stroke-dasharray: 5px 10px;
  stroke-linecap: round;
  stroke-dashoffset: 1500;
}

@keyframes arc-animation {
  to {
    stroke-dashoffset: 0;
  }
}

.arc-information{
  width: 100px;
  box-shadow: 0 0 1em #cecece;
  background: white;
  display: table !important;
  tr td{ padding: 3px 10px; }
  tr th{ background: #FFEB3B; }

使用动画功能或样式表转换:

  • 核心:
  • 收藏:
  • 过渡:

我对CSS
animate
属性和调用
cy.animate()
之间的转换有点困惑。在哪里引用关键帧?