几种div点击关闭消失动画效果代码

代码语言:html

所属分类:布局界面

代码描述:几种div点击关闭消失动画效果代码

代码标签: 关闭 消失 动画 效果

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


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

<head>

  <meta charset="UTF-8">
  

  
  
  
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

.container {
  overflow: hidden;
  min-height: 200vh;
}

.pop-up {
  height: 100px;
  width: 50%;
  border-radius: 10px;
  margin: 5px auto;
  position: relative;
}

.pop-up div {
  color: white;
  line-height: 100px;
  padding-left: 10%;
  font-family: 'Roboto', sans-serif;
}

.close {
  background: transparent;
  border: none;
  position: absolute;
  right: 5px;
  color: white;
  font-size: 25px;
  cursor: pointer;
  outline: none;
}

#one {
  background: salmon;
}

#two {
  background: orange;
}

#three {
  background: skyblue;
}

#four {
  background: #405CBF;
}

#five {
  background: blue;
  position: relative;
}

#five:before {
  content: "";
  display: none;
  background: blue;
  height: 100px;
  width: 50%.........完整代码请登录后点击上方下载按钮下载查看

网友评论0