查看原文
其他

非常牛X的纯CSS实现动态天气预报!

点击上方“IT平头哥联盟”,选择“置顶或者星标


1 引言

本期分享一下如何仅用CSS3,实现单标签的动态晴阴雨雪。技术关键点就是“单标签”和“纯CSS”。先看下最终效果:
再看看HTML代码:

  1. <!--晴-->



  2. <div class="weather sunny"></div>



  3. <!--阴-->



  4. <div class="weather cloudy"></div>



  5. <!--雨-->



  6. <div class="weather rainy"></div>



  7. <!--雪-->



  8. <div class="weather snowy"></div>


没错,就是这么任性,每个动图就一个标签,而且无图无JS!下面就来详细介绍下技术实现。
涉及到的关键CSS3属性:
  1. transform:用于移位、旋转、缩放效果
  2. box-shadow:利用投影实现图像的复制(关键!)
  3. clip-path:基于绘制的形状对元素进行遮罩处理
  4. animation:设置元素的动画
以及实现单标签最关键的:before、:after伪类运用。
通过本期分享,能学到什么?
最大的一点就是:box-shadow的另类玩法——“影分身”。
下面开始逐个讲解。

2 基础背景

图中的蓝块背景区域,很基础了,不用讲了。
设置了区域的宽高、背景色和圆角效果。

  1. .weather {



  2. position: relative;



  3. display: inline-block;



  4. width: 180px;



  5. height: 240px;



  6. background: #23b7e5;



  7. border-radius: 8px;



  8. }


3 晴天

晴天图标由两个元素组成:太阳和内六角形阳光。
:before、:after 两个伪类可以在元素内部分别“添加”一个元素,正好都利用上了。

3.1 绘制太阳

首先,用 :before实现太阳。

  1. .sunny:before {



  2. content: "";



  3. position: absolute;



  4. top: 50%;



  5. left: 50%;



  6. transform: translate(-50%, -50%);



  7. width: 60px;



  8. height: 60px;



  9. background: #F6D963;



  10. border-radius: 50%;



  11. box-shadow: 0 0 20px #ff0;



  12. z-index: 2;



  13. }


content用来生成一个元素。
position、top、left、transform用来实现中心居中。
box-shadow实现外发光效果,这只是box-shadow最基本最常用的使用方式。

3.2 绘制内六角形

用 :after实现内六角形。
实现的关键就是使用遮罩。通过clip-path绘制一个内六角形。这就变成了一个简单的初中几何问题。
内六角形由两个等边三角形拼合而成。
合并之后,我们可以把整体划分为若干个完全相同的小等边三角形。
在垂直方向做个辅助线,连接中间顶部和底部两点。不难发现,“垂直方向的最大长度”要大于“水平方向的最大长度”。
设小等边三角形的边长为1,以内六角形中心为坐标原点,可以计算出每个点的坐标,如下:
为了使用clip-path的百分比定位来绘制图像,下一步需要把长度坐标转换为百分比坐标。
设垂直方向最大长度为100%,仍以内六角形中心为坐标原点,每个点的坐标值转换如下:
由于clip-path绘制原点是在左上角,x轴右侧为正值,y轴下方为正值。需要做下坐标系转换。即:
新x轴坐标值 = 旧x轴坐标值 + 50%
新y轴坐标值 = (旧y轴坐标值 - 50%) * -1
使用clip-path的polygon方法绘制内六角形,坐标已通过上面的步骤计算出来了。
样式代码如下:

  1. .sunny:after {



  2. content: "";



  3. position: absolute;



  4. top: 50%;



  5. left: 50%;



  6. margin: -45px 0 0 -45px;



  7. width: 90px;



  8. height: 90px;



  9. background: #FFEB3B;



  10. clip-path: polygon(



  11. 50% 0%,



  12. 65.43% 25%,



  13. 93.3% 25%,



  14. 78.87% 50%,



  15. 93.3% 75%,



  16. 64.43% 75%,



  17. 50% 100%,



  18. 35.57% 75%,



  19. 6.7% 75%,



  20. 21.13% 50%,



  21. 6.7% 25%,



  22. 35.57% 25%);



  23. z-index: 1;



  24. animation: sunScale 2s linear infinite;



  25. }



  26. @keyframes sunScale {



  27. 0% {



  28. transform: scale(1);



  29. }



  30. 50% {



  31. transform: scale(1.1);



  32. }



  33. 100% {



  34. transform: scale(1);



  35. }



  36. }


※注:safari需要将clip-path改为-webkit-clip-path。由于代码太占篇幅,这里就不重复写两遍了。
实现原理就是通过clip-path绘制了一个内六角形遮罩,把黄颜色背景通过遮罩变成了最终的内六角形。
animation通过关键帧动画实现了“放大缩小”交替动效。
最终效果:

4 阴天

观察图形发现,有两个云朵:前面的白云和后面的乌云。貌似需要分别用 :before和 :after实现。如果这样做的话,后续章节的雨天和雪天的雨雪元素就没有多余的伪类可用了。所以只能用一个伪类实现两朵云。这里就用到了box-shadow的“影分身”了!
由于后续章节的雨天和雪天都复用了云的样式,所以写在一起了,代码如下:

  1. .cloudy:before,



  2. .rainy:before,



  3. .snowy:before {



  4. content: "";



  5. position: absolute;



  6. top: 50%;



  7. left: 25%;



  8. transform: translate(-50%, -50%);



  9. width: 36px;



  10. height: 36px;



  11. background: #fff;



  12. border-radius: 50%;



  13. z-index: 2;



  14. }


真实的元素(真身)就是一个圆。通过box-shodow来把投影作为“分身”。
先来看看box-shadow的属性:
box-shadow: h-shadow v-shadow blur spread color inset;
参数详解:
h-shadow: 阴影的水平偏移量。
v-shadow: 阴影的垂直偏移量。
blur: 模糊距离(就是渐变的距离,设为0就没有渐变)。
spread: 投影的尺寸,通过这个控制“影分身”的大小。
color: 投影颜色,通过这个实现后方的乌云。
inset: 改为内阴影。这里用不到。
先复制一个影分身试试:

  1. box-shadow: #fff 22px -15px 0 6px;


继续复制多个影分身,带全部影分身的完整代码如下:

  1. .cloudy:before,



  2. .rainy:before,



  3. .snowy:before {



  4. content: "";



  5. position: absolute;



  6. top: 50%;



  7. left: 25%;



  8. transform: translate(-50%, -50%);



  9. width: 36px;



  10. height: 36px;



  11. background: #fff;



  12. border-radius: 50%;



  13. box-shadow:



  14. #fff 22px -15px 0 6px,



  15. #fff 57px -6px 0 2px,



  16. #fff 87px 4px 0 -4px,



  17. #fff 33px 6px 0 6px,



  18. #fff 61px 6px 0 2px,



  19. #ccc 29px -23px 0 6px,



  20. #ccc 64px -14px 0 2px,



  21. #ccc 94px -4px 0 -4px;



  22. z-index: 2;



  23. }


五个分身的白圆(#fff),三个分身的灰圆(#ccc)拼成了两朵云。
再给云朵加上“上下浮动”的动效:

  1. .cloudy:before {



  2. animation: cloudMove 2s linear infinite;



  3. }



  4. @keyframes cloudMove {



  5. 0% {



  6. transform: translate(-50%, -50%);



  7. }



  8. 50% {



  9. transform: translate(-50%, -60%);



  10. }



  11. 100% {



  12. transform: translate(-50%, -50%);



  13. }



  14. }


5 雨天

云朵的代码直接复用第4章的阴天。这里使用 :after 伪类实现雨滴。
先实现一个雨滴(为方便观看,暂时隐藏云朵):

  1. .rainy:after {



  2. content: "";



  3. position: absolute;



  4. top:50%;



  5. left: 25%;



  6. width: 4px;



  7. height: 14px;



  8. background: #fff;



  9. border-radius: 2px;



  10. }


然后通过box-shadow“影分身”:

  1. .rainy:after {



  2. content: "";



  3. position: absolute;



  4. top:50%;



  5. left: 25%;



  6. width: 4px;



  7. height: 14px;



  8. background: #fff;



  9. border-radius: 2px;



  10. + box-shadow:



  11. + #fff 25px -10px 0,



  12. + #fff 50px 0 0,



  13. + #fff 75px -10px 0,



  14. + #fff 0 25px 0,



  15. + #fff 25px 15px 0,



  16. + #fff 50px 25px 0,



  17. + #fff 75px 15px 0,



  18. + #fff 0 50px 0,



  19. + #fff 25px 40px 0,



  20. + #fff 50px 50px 0,



  21. + #fff 75px 40px 0;



  22. }


再加入下雨的移动动效,修改如下:

  1. .rainy:after {



  2. ...(略)



  3. + animation: rainDrop 2s linear infinite;



  4. }



  5. + @keyframes rainDrop {



  6. + 0% {



  7. + transform: translate(0, 0) rotate(10deg);



  8. + }



  9. + 100% {



  10. + transform: translate(-4px, 24px) rotate(10deg);



  11. + box-shadow:



  12. + #fff 25px -10px 0,



  13. + #fff 50px 0 0,



  14. + #fff 75px -10px 0,



  15. + #fff 0 25px 0,



  16. + #fff 25px 15px 0,



  17. + #fff 50px 25px 0,



  18. + #fff 75px 15px 0,



  19. + rgba(255, 255, 255, 0) 0 50px 0,



  20. + rgba(255, 255, 255, 0) 25px 40px 0,



  21. + rgba(255, 255, 255, 0) 50px 50px 0,



  22. + rgba(255, 255, 255, 0) 75px 40px 0;



  23. + }



  24. + }


动画添加了10度的旋转,让雨滴倾斜,以及垂直方向的移动。
这里的关键就是:虽然本质是垂直移动,但为了看上去是“循环”效果,需要将最下面的雨滴进行透明渐变,同时调节X和Y轴的值,让最终位置正好跟初始位置重合,就不会显得“断开”。
我们生成的是三行雨滴,第一行被云朵挡住了,实际能看到的是下面两行。在第一行移动到第二行位置的时候,原第三行已经透明看不见了,正好与初始状态一样,实现了无缝循环拼接。

6 雪天

雪天与雨天的区别就是把雨滴换成圆形,取消旋转角度。代码如下:

  1. .snowy:after {



  2. content: "";



  3. position: absolute;



  4. top:50%;



  5. left: 25%;



  6. width: 8px;



  7. height: 8px;



  8. background: #fff;



  9. border-radius: 50%;



  10. box-shadow:



  11. #fff 25px -10px 0,



  12. #fff 50px 0 0,



  13. #fff 75px -10px 0,



  14. #fff 0 25px 0,



  15. #fff 25px 15px 0,



  16. #fff 50px 25px 0,



  17. #fff 75px 15px 0,



  18. #fff 0 50px 0,



  19. #fff 25px 40px 0,



  20. #fff 50px 50px 0,



  21. #fff 75px 40px 0;



  22. animation: snowDrop 2s linear infinite;



  23. }



  24. @keyframes snowDrop {



  25. 0% {



  26. transform: translateY(0);



  27. }



  28. 100% {



  29. transform: translateY(25px);



  30. box-shadow:



  31. #fff 25px -10px 0,



  32. #fff 50px 0 0,



  33. #fff 75px -10px 0,



  34. #fff 0 25px 0,



  35. #fff 25px 15px 0,



  36. #fff 50px 25px 0,



  37. #fff 75px 15px 0,



  38. rgba(255, 255, 255, 0) 0 50px 0,



  39. rgba(255, 255, 255, 0) 25px 40px 0,



  40. rgba(255, 255, 255, 0) 50px 50px 0,



  41. rgba(255, 255, 255, 0) 75px 40px 0;



  42. }



  43. }


7 全部源码

源码如下,方便粘贴保存为html:

  1. <!DOCTYPE html>



  2. <html lang="en">



  3. <head>



  4. <meta charset="UTF-8">



  5. <title>单标签!纯CSS实现动态晴阴雨雪</title>



  6. </head>




  7. <body>



  8. <div class="weather sunny"></div>



  9. <div class="weather cloudy"></div>



  10. <div class="weather rainy"></div>



  11. <div class="weather snowy"></div>



  12. </body>



  13. <style>



  14. .weather {



  15. position: relative;



  16. display: inline-block;



  17. width: 180px;



  18. height: 240px;



  19. background: #23b7e5;



  20. border-radius: 8px;



  21. }



  22. .sunny:before {



  23. content: "";



  24. position: absolute;



  25. top: 50%;



  26. left: 50%;



  27. transform: translate(-50%, -50%);



  28. width: 60px;



  29. height: 60px;



  30. background: #F6D963;



  31. border-radius: 50%;



  32. box-shadow: 0 0 20px #ff0;



  33. z-index: 2;



  34. }



  35. .sunny:after {



  36. content: "";



  37. position: absolute;



  38. top: 50%;



  39. left: 50%;



  40. margin: -45px 0 0 -45px;



  41. width: 90px;



  42. height: 90px;



  43. background: #FFEB3B;



  44. clip-path: polygon(



  45. 50% 0%,



  46. 65.43% 25%,



  47. 93.3% 25%,



  48. 78.87% 50%,



  49. 93.3% 75%,



  50. 64.43% 75%,



  51. 50% 100%,



  52. 35.57% 75%,



  53. 6.7% 75%,



  54. 21.13% 50%,



  55. 6.7% 25%,



  56. 35.57% 25%);



  57. z-index: 1;



  58. animation: sunScale 2s linear infinite;



  59. }



  60. @keyframes sunScale {



  61. 0% {



  62. transform: scale(1);



  63. }



  64. 50% {



  65. transform: scale(1.1);



  66. }



  67. 100% {



  68. transform: scale(1);



  69. }



  70. }



  71. .cloudy:before,



  72. .rainy:before,



  73. .snowy:before {



  74. content: "";



  75. position: absolute;



  76. top: 50%;



  77. left: 25%;



  78. transform: translate(-50%, -50%);



  79. width: 36px;



  80. height: 36px;



  81. background: #fff;



  82. border-radius: 50%;



  83. box-shadow:



  84. #fff 22px -15px 0 6px,



  85. #fff 57px -6px 0 2px,



  86. #fff 87px 4px 0 -4px,



  87. #fff 33px 6px 0 6px,



  88. #fff 61px 6px 0 2px,



  89. #ccc 29px -23px 0 6px,



  90. #ccc 64px -14px 0 2px,



  91. #ccc 94px -4px 0 -4px;



  92. z-index: 2;



  93. }



  94. .cloudy:before {



  95. animation: cloudMove 2s linear infinite;



  96. }



  97. @keyframes cloudMove {



  98. 0% {



  99. transform: translate(-50%, -50%);



  100. }



  101. 50% {



  102. transform: translate(-50%, -60%);



  103. }



  104. 100% {



  105. transform: translate(-50%, -50%);



  106. }



  107. }



  108. .rainy:after {



  109. content: "";



  110. position: absolute;



  111. top:50%;



  112. left: 25%;



  113. width: 4px;



  114. height: 14px;



  115. background: #fff;



  116. border-radius: 2px;



  117. box-shadow:



  118. #fff 25px -10px 0,



  119. #fff 50px 0 0,



  120. #fff 75px -10px 0,



  121. #fff 0 25px 0,



  122. #fff 25px 15px 0,



  123. #fff 50px 25px 0,



  124. #fff 75px 15px 0,



  125. #fff 0 50px 0,



  126. #fff 25px 40px 0,



  127. #fff 50px 50px 0,



  128. #fff 75px 40px 0;



  129. animation: rainDrop 2s linear infinite;



  130. }



  131. @keyframes rainDrop {



  132. 0% {



  133. transform: translate(0, 0) rotate(10deg);



  134. }



  135. 100% {



  136. transform: translate(-4px, 24px) rotate(10deg);



  137. box-shadow:



  138. #fff 25px -10px 0,



  139. #fff 50px 0 0,



  140. #fff 75px -10px 0,



  141. #fff 0 25px 0,



  142. #fff 25px 15px 0,



  143. #fff 50px 25px 0,



  144. #fff 75px 15px 0,



  145. rgba(255, 255, 255, 0) 0 50px 0,



  146. rgba(255, 255, 255, 0) 25px 40px 0,



  147. rgba(255, 255, 255, 0) 50px 50px 0,



  148. rgba(255, 255, 255, 0) 75px 40px 0;



  149. }



  150. }



  151. .snowy:after {



  152. content: "";



  153. position: absolute;



  154. top:50%;



  155. left: 25%;



  156. width: 8px;



  157. height: 8px;



  158. background: #fff;



  159. border-radius: 50%;



  160. box-shadow:



  161. #fff 25px -10px 0,



  162. #fff 50px 0 0,



  163. #fff 75px -10px 0,



  164. #fff 0 25px 0,



  165. #fff 25px 15px 0,



  166. #fff 50px 25px 0,



  167. #fff 75px 15px 0,



  168. #fff 0 50px 0,



  169. #fff 25px 40px 0,



  170. #fff 50px 50px 0,



  171. #fff 75px 40px 0;



  172. animation: snowDrop 2s linear infinite;



  173. }



  174. @keyframes snowDrop {



  175. 0% {



  176. transform: translateY(0);



  177. }



  178. 100% {



  179. transform: translateY(25px);



  180. box-shadow:



  181. #fff 25px -10px 0,



  182. #fff 50px 0 0,



  183. #fff 75px -10px 0,



  184. #fff 0 25px 0,



  185. #fff 25px 15px 0,



  186. #fff 50px 25px 0,



  187. #fff 75px 15px 0,



  188. rgba(255, 255, 255, 0) 0 50px 0,



  189. rgba(255, 255, 255, 0) 25px 40px 0,



  190. rgba(255, 255, 255, 0) 50px 50px 0,



  191. rgba(255, 255, 255, 0) 75px 40px 0;



  192. }



  193. }



  194. </style>



  195. </html>


以上就是本期CSS高端玩法的分享,欢迎大家转发交流分享。

 end -




用心分享 一起成长 做有温度的攻城狮

每天记得对自己说:你是最棒的!


往期推荐:

趋势:TypeScript - 一种思维方式

即日起 TypeScript —— 面向编辑器编程

如何将Web主页性能提升十倍以上?

webpack4配置详解之常用插件分享

JavaScript到底是解释型语言还是编译型语言?


都看到这里了,给个“在看”再走呗~

您可能也对以下帖子感兴趣

文章有问题?点此查看未经处理的缓存