如何使用 Keynote 制作代码讲解动图 All In One
Keynote 制作 gif 动图 / gif 代码动画 / gif演示动画
原理分析
-
利用
Keynote
/ PPT 的动效库,制作动画 -
使用录屏工具
LICEcap
,录制播放的动画,导出 gif 图片
demos
- git
# git 演示动画
$ git cheery-pick
https://dev.to/lydiahallie/cs-visualized-useful-git-commands-37p1
https://dev.to/lydiahallie/javascript-visualized-the-javascript-engine-4cdf
- TypeScript
// TypeScript 演示动画
// Exclude
// type Exclude<T, U> = T extends U ? never : T;
type T = "a" | "b" | "c";
type U = "a" | "b";
type ExcludeDemo = Exclude<T, U>;
// type ExcludeDemo = "c"
http://www.typescriptlang.org/play/
https://juejin.cn/post/7096265620445986823