div+css实现5款天气预报动画图标效果代码

代码语言:html

所属分类:布局界面

代码描述:div+css实现5款天气预报动画图标效果代码

代码标签: div css 天气 预报 动画 图标

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


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

<head>

  <meta charset="UTF-8">
  

  
  
  
  
<style>
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  margin: 0;
  padding: 0;
  color: #8f90a3;
  background-color: #232435;
  background-image: linear-gradient(45deg, #232435, #35415f);
  background-attachment: fixed;
}

h2 {
  margin-bottom: 4rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.sunny {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin-top: 4rem;
}

.sunny:before,
.partly_cloudy__sun:before {
  content: "&q.........完整代码请登录后点击上方下载按钮下载查看

网友评论0