div+css实现天气预报小部件效果代码

代码语言:html

所属分类:布局界面

代码描述:div+css实现天气预报小部件效果代码

代码标签: div css 天气 预报 小部件

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

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">





    <style>
        @import url(https://fonts.googleapis.com/css?family=Roboto:300);
        *,
        *:after,
        *:before {
          box-sizing: border-box;
        }
        
        body {
          background: #CEF;
        }
        
        .container {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 98vh;
        }
        
        .widget {
          background: linear-gradient(to bottom right, #3cc0fe 20%, #0066ff);
          width: 900px;
          height: 400px;
          border-radius: 6px;
          box-shadow: 0px 60px 80px -20px rgba(39, 165, 253, 0.4);
          position: relative;
          overflow: hidden;
        }
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0