gsap+css实现导航条菜单点击动画效果代码
代码语言:html
所属分类:菜单导航
代码描述:gsap+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/all.6.0.css"> <style> @import url("https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700&subset=cyrillic"); body { display: flex; justify-content: center; align-items: center; height: 100vh; width: 100%; transition: 0.5s; overflow: hidden; } .overlay { height: 200vw; width: 200vw; border-radius: 50%; background-color: #000; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } .nav { background-color: #fff; padding: 12px 5px; border-radius: 15px; box-shadow: 3px 3px 15px rgba(17.........完整代码请登录后点击上方下载按钮下载查看
网友评论0