js+css实现毛玻璃粘性菜单导航滚动单页效果代码
代码语言:html
所属分类:加载滚动
代码描述:js+css实现毛玻璃粘性菜单导航滚动单页效果代码,实现了菜单粘性自折叠,点击菜单可滚动到相关页面。
代码标签: js css 毛玻璃 粘性 菜单 导航 滚动 单页
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/normalize.5.0.css"> <style> body { line-height: 1.6; color: #fff; background: #000; font-size: 18px; font-weight: 400; font-family: "-apple-system", "BlinkMacSystemFont", "Roboto", "Helvetica Neue", sans-serif !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body.stop { overflow: hidden; } #page { position: relative; transition: 1s all ease-in-out; } #page.menuopen { opacity: 0.6; filter: blur(20px); transform: scale(1.2); } section { display: flex; min-height: 100vh; padding: 50px; justify-content: center; align-items: center; background: #222; color: #fff; position: relative; } section:after { content: ""; position: absolute; left: 0; top: 0; background: #000; opacity: 0.5; height: 100%; width: 100%; } section h1 { font-size: 120px; margin: 0; z-index: 2; position: relative; } header { z-index: 99999; position: relative; } header #logo { position: fixed; top: 30px; left: 0; right: 0; width: 100px; height: auto; margin: 0 auto; opacity: 1; transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s; } header nav { display: flex; height: 100px; justify-content: center; align-items: center; padding: 0 20px; position: fixed; left: 0; right: 0; width: 500px; margin: 0 auto; top: 120px; background-color: rgba(255, 255, 255, 0.05); border-radius: 200px; z-index: 9; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.06); transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s; } header nav a { color: #fff; text-decoration: none; font-weight: 700; display: block; padding: 10px 20px; line-height: 1; font-size: 15px; letter-spacing: 2px; text-transform: lowercase; transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s; } header na.........完整代码请登录后点击上方下载按钮下载查看
网友评论0