1
0
mirror of https://gitee.com/coder-xiaomo/algorithm-visualization synced 2025-01-10 19:58:18 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
algorithm-visualization/README.md
2022-05-15 23:58:18 +08:00

38 lines
528 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 数据结构可视化
### 基本框架
SVG 过渡动画
时间轴
基本思路
> 用户输入排序序列然后首先js生成排序步骤。界面上显示排序顺序同时生成每一帧中每个元素的详细位置引入帧的概念
>
> 因为有帧的概念所以可以实现进度条进度条可以调整到任意一帧css动画缓动到对应的位置。
基本方法
```
创建画布
创建元素
改变元素位置,强调,大小,颜色,文本等
元素缓动
```