VR 导航菜单效果
代码语言:html
所属分类:菜单导航
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> VR Navigation</title>
<style>
@import url("https://fonts.googleapis.com/css?family=Poppins:500,600&display=swap");
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
font-family: "Poppins", sans-serif;
background: linear-gradient(tobottom, hsl(250, 14%, 9%), hsl(250, 20%, 15%));
/* center the nav in the viewport */
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
/* set a perspective for the nested nav */
perspective: 500px;
}
/* display the anchor links in three columns of equal width */
nav {
display: grid;
grid-template-columns: repeat(3, 100px);
grid-column-gap: 4rem;
padding: 2rem 3rem;
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0