sublime text css动画插件-Animate.css-Snippets

来源:互联网 发布:软件测试x模型 编辑:程序博客网 时间:2024/05/29 20:01

Animate.css-Snippets是可以生成Animate.css动画代码的sublime text插件。

例如键入:animatecss-bounceOutDown

将生成以下代码:

@-webkit-keyframes bounceOutDown {  0% {    -webkit-transform: translateY(0);    transform: translateY(0);  }  20% {    opacity: 1;    -webkit-transform: translateY(-20px);    transform: translateY(-20px);  }  100% {    opacity: 0;    -webkit-transform: translateY(2000px);    transform: translateY(2000px);  }}....bounceOutDown {  -webkit-animation-name: bounceOutDown;  animation-name: bounceOutDown;}

安装:

可以通过Package Control来安装,搜索Animate.css。

github地址:https://github.com/adeniszczyc/Animate.css-Snippets


0 0