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-sta.........完整代码请登录后点击上方下载按钮下载查看

网友评论0