悬浮线框动画效果
代码语言:html
所属分类:悬停
代码描述:悬浮线框动画效果
代码标签: 效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> *{ margin: 0; padding: 0; box-sizing: border-box; } body { height: 100vh; background: #eee; display: flex; justify-content: center; align-items: center; } .btn { width: 150px; height: 50px; border: 1px solid #333; font-family: 'Cinzel', serif; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; position: relative; z-index: 0; transition: 1s; } .vertical, .horizontal { position: absolute; background: #eee; z-index: -1; .........完整代码请登录后点击上方下载按钮下载查看
网友评论0