css3的复杂动画转成jquery调用怎么写
问题描述
@-webkit-keyframes bounceInRight { 0%, 100%, 60%, 75%, 90% {-webkit-animation-timing-function: cubic-bezier(0.215, .61, .355, 1);animation-timing-function: cubic-bezier(0.215, .61, .355, 1) } 0% {opacity: 0;-webkit-transform: translate3d(3000px, 0, 0);transform: translate3d(3000px, 0, 0) } 60% {opacity: 1;-webkit-transform: translate3d(-25px, 0, 0);transform: translate3d(-25px, 0, 0) } 75% {-webkit-transform: translate3d(10px, 0, 0);transform: translate3d(10px, 0, 0) } 90% {-webkit-transform: translate3d(-5px, 0, 0);transform: translate3d(-5px, 0, 0) } 100% {-webkit-transform: none;transform: none }}
.animatedtemo { -webkit-animation-name:bounceInRight; -webkit-animation-duration: 2s; animation-duration:2s; -webkit-animation-fill-mode: backwards; animation-fill-mode: backwards}
问题解答
回答1:-webkit-animation-name:bounceInRight;
这个单独那出来做一个样式类jquery只用为这个元素添加这个类就可以执行动画了
相关文章:
1. debian - docker依赖的aufs-tools源码哪里可以找到啊?2. angular.js - angular内容过长展开收起效果3. 关docker hub上有些镜像的tag被标记““This image has vulnerabilities””4. docker - 各位电脑上有多少个容器啊?容器一多,自己都搞混了,咋办呢?5. docker-compose 为何找不到配置文件?6. docker 下面创建的IMAGE 他们的 ID 一样?这个是怎么回事????7. angular.js使用$resource服务把数据存入mongodb的问题。8. macos - mac下docker如何设置代理9. javascript - sublime快键键问题10. docker容器呢SSH为什么连不通呢?

网公网安备