css实现按钮发光走光动画效果代码
代码语言:html
所属分类:表单美化
代码描述:css实现按钮发光走光动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style> body { background-color: #313131; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; height: 100vh; font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; } button { display: block; position: relative; top: 0; border: 0; cursor: pointer; background: #9ccc65; color: white; border-radius: 3px; line-height: 1; font-size: 20px; padding: 15px 25px; outline: 0; margin: 20px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); } button.shiny { background: #007eaf; background: linear-gradient(-45deg, #2284fb 50%, #0a0e92 60%, #2e59d4 70%); background-size: 600% 100%; -webkit-animation: shine 20s infinite; animation: shine 20s infinite; -webkit-animation-delay: 0s; animatio.........完整代码请登录后点击上方下载按钮下载查看
网友评论0