svg+css实现液态玻璃顶部导航菜单效果代码

代码语言:html

所属分类:菜单导航

代码描述:svg+css实现液态玻璃顶部导航菜单效果代码

代码标签: svg css 液态 玻璃 顶部 导航 菜单

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

  
  
  
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html, body {
	scroll-behavior: smooth;
}
.container {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	background-color: #000;
	color: #fff;
	img {
		width: 100%;
		height: 100%;
		object-fit: cove.........完整代码请登录后点击上方下载按钮下载查看

网友评论0