左上角菜单弹出动画效果

代码语言:html

所属分类:菜单导航

代码描述:左上角菜单弹出动画效果

代码标签: 动画 效果

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


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="http://repo.bfw.wiki/bfwrepo/css/all.min.css">
<link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Roboto&amp;display=swap'>
<style>
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.container {
  height: 100vh;
}

.flex-container-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-1 {
  position: fixed;
  left: -270px;
  top: -30px;
  width: 400px;
  height: 400px;
  background-color: #404076;
  border-radius: 50%;.........完整代码请登录后点击上方下载按钮下载查看

网友评论0