css3实现按钮放大缩小循环突出动画效果代码
代码语言:html
所属分类:动画
代码描述:css3实现按钮放大缩小循环突出动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <style> body{ background: white; } .anibtn { margin: 150px auto; color: white; width: 200px; height: 40px; line-height: 40px; font-size:22px; background-color: red; text-align: center; -webkit-animation-name: 'ripple'; /*动画属性名,也就是我们前面keyframes定义的动画名*/ -webkit-animation-duration: 0.5s; /*动画持续时间*/ -webkit-animation-timing-function: linear; /*动画频率,和transition-timing-function是一样的*/ -webkit-animation-delay: 0s; /*动.........完整代码请登录后点击上方下载按钮下载查看
网友评论0