css按钮边框光线走光动画效果代码
代码语言:html
所属分类:动画
代码描述:css按钮边框光线走光动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> @import url("https://fonts.googleapis.com/css?family=Raleway:400"); * { box-sizing: border-box; } @property --angle { syntax: '<angle>'; initial-value: 90deg; inherits: true; } @property --gradX { syntax: '<percentage>'; initial-value: 50%; inherits: true; } @property --gradY { syntax: '<percentage>'; initial-value: 0%; inherits: true; } body { font-family: Raleway, sans-serif; text-align: center; margin: 0; padding: 1rem; background-color: rgba(10, 12, 18, 1); color: white; min-height: 100vh; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; } p { margin: 0; } :root { --d: 2500ms; --angle: 90deg; --gradX: 100%; --gradY: 50%; --c1: rgba(168, 239, 255, 1); --c2: rgba(168, 239, 255, 0.1); } .wrapper { min-width: min(40rem, 100%); } .box { font-size: 3vw; margin: max(1rem, 3vw); .........完整代码请登录后点击上方下载按钮下载查看
网友评论0