滚动选择和收藏颜色代码

代码语言:html

所属分类:加载滚动

代码描述:滚动选择和收藏颜色代码

代码标签: 收藏 颜色

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


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

<head>

  <meta charset="UTF-8">


  <link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&amp;display=swap'>
  
<style>
/*
  common
*/

html,
body {
  overflow: hidden;
  width: 100%;
  height: 100%;
  color: #141517;
  font-family: 'Noto Sans', sans-serif;
  font-size: 100%;
}

a {
  color: #141517;
  text-decoration: none;
}

a:visited {
  color: #141517;
}

a:hover {
  color: deeppink;
}

body {
  position: relative;
}

/*
  header
*/

header {
  position: fixed;
  top: 1.6rem;
  left: 1.6rem;
  z-index: 9999;
}

header > h1 {
  font-size: 1.6rem;
  padding-bottom: 0.8rem;
}

/*
  footer
*/

footer {
  position: fixed;
  z-index: 9999;
  bottom: 1.6rem;
  right: 1.6rem;
}

/*
  main
*/

div {
  height: 100%;
  width: 100%;
  position: absolute;
}

.in {
  -webkit-animation: in .4s ease 0s 1 normal;
          animation: in .4s ease 0s 1 normal;
}

@-w.........完整代码请登录后点击上方下载按钮下载查看

网友评论0