css3 滤镜filter

filter css属性将模糊或颜色偏移等图形效果应用于元素。

语法

filter:函数(); 例如:filter:blur(5px); blur 模糊处理 数值越大越模糊

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. box-sizing: border-box;
  13. }
  14. img {
  15. filter: blur(5px);
  16. }
  17. img:hover {
  18. filter: blur(0);
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <img src="demo31.png" alt="">
  24. </body>
  25. </html>

image.pngimage.png

css3 calc函数

calc() 此css函数让我们在声明css属性值时执行一些计算。
括号里面可以使用 + - * / 来进行计算。

例如:width: calc(100% - 80px);
意思:
100%:父盒子
80px:子盒子
总意思:子盒子的 width 永远比 父盒子小80px。

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

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>

  <style>
    div {
      width: 200px;
      height: 200px;
      background-color: blue;
    }

    p {
      width: calc(100% - 80px);
      height: 50px;
      background-color: red;
    }
  </style>
</head>

<body>
  <div>
    <p></p>
  </div>
</body>

</html>

image.pngimage.png