react实现一个手机闹钟列表app效果代码

代码语言:html

所属分类:布局界面

代码描述:react实现一个手机闹钟列表app效果代码

代码标签: 手机 闹钟 列表 app 效果

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


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

<head>

  <meta charset="UTF-8">
  

  
<style>
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Josefin Sans", sans-serif !important;
}

.background {
  width: 100vw;
  height: 100vh;
  background: #f75050;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app {
  width: 23vw;
  background: white;
  border-radius: 3vw;
  box-shadow: 0px 0px 16px 1px #00000030;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.app_header {
  height: 5vw;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5vw 2vw;
}
.app_header .bar {
  background: #d0d0d0;
  height: 0.5vw;
  width: 5vw;
  border-radius: 5vw;
  margin-right: 0.3vw;
}
.app_header .dot {
  display: inline-block;
  background: #d0d0d0;
  height: 0.5vw;
  width: 0.5vw;
  border-radius: 50%;
}

.alarms {
  width: 100%;
  padding: 0 2vw;
  flex-grow: 1;
}
.alarms label {
  color: g.........完整代码请登录后点击上方下载按钮下载查看

网友评论0