当前位置:   article > 正文

特效开发总结_main.css.map

main.css.map

一、基于rem单位的屏幕等比例缩放

rem是浏览器描述长度的单位,含义为:相对于 `html` 的字体大小的单位。1rem = html 根节点上1个字符的宽度。使用 `rem` 单位设置的元素尺寸,会在不同的设备屏幕宽度下(例如:手机屏幕和平板屏幕)等比例缩放。当页面元素需要在不同屏幕宽度下保证元素的比例大小不变时,则可以使用 `rem`

使用方法:

  1. <!-- 设置默认字体大小为我们所定义的标准字体大小 -->
  2. <html lang="en" style="font-size: 20px;">
  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. body {
  10. margin: 0;
  11. }
  12. .box {
  13. background-color: #f00;
  14. /* width: 300px;
  15. height: 300px; */
  16. /* 3. 根据标准字体大小计算rem值 */
  17. width: 15rem;
  18. height: 15rem;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="box"></div>
  24. </body>
  25. <script>
  26. // 1. 确立参考系,定义标准设备的屏幕宽度和字体大小
  27. // 2. 比例公式(等式左右两边比例尺相同,从而达到等比例缩放的目的):标准屏幕宽度 / 标准字体大小 = 新的屏幕宽度 / 新的屏幕字体大小
  28. // 3. 将页面样式中的 `px` 单位换算并替换为 `rem`,方法是`?rem = 元素的尺寸 / 标准字体大小`
  29. // 4. 绑定窗口的 `resize` 和 `load` 事件,触发事件时计算出新的屏幕宽度时的字体大小,设置 `html` 的字体大小
  30. const html = document.querySelector('html')
  31. // 1. 我们定义 标准屏幕宽为 600px 标准字体大小为 20px;
  32. // 2. 计算新的屏幕尺寸下的新的字体大小
  33. let newFontSize = window.innerWidth / (600 / 20)
  34. // 重新计算字体大小
  35. function resize() {
  36. let newFontSize = window.innerWidth / (600 / 20)
  37. console.log(newFontSize);
  38. // 设置html根节点的字体大小
  39. html.style.fontSize = `${newFontSize}px`;
  40. }
  41. // 3. 绑定窗口尺寸变化事件和页面加载事件
  42. window.addEventListener('resize', resize)
  43. window.addEventListener('load', resize)
  44. </script>
  45. </html>

二、css预编译工具

预编译就是在编译环节发生之前,提前进行一次编译。其目的通常是将一个浏览器无法识别的语法提前编译成浏览器能够识别的语法。例如: css预编译 将 sass 转换为 css,js预编译 将 ts 转换成 js 等。

预编译工具sass

sass 工具用于对 css 进行预编译,预编译的css内容,是一个 sass/scss 文件,文件中的语法,大部分和 css 相同,有一部分是预编译的语法。

安装:使用node.js 在终端中输入npm init -y 和 npm install -g sass

命令行中将sass编译为css的使用方法:

         1、语法 sass <inputPath> <outputPath>

        <inputPath> 要编译的 scss 或 sass 文件路径

        <outputPath> 编译完的 css 文件的输出路径

        sass main.scss ./css/main.css

        2、 监视文件变化

         添加 --watch 标识 可以让sass自动监视文件变化 然后自动输出到指定文件

        sass --watch main.scss ./css/main.css

        3、监视目录变化

        路径参数变成 <inputDir>:<outputDir> 这样就可以监视文件夹中任一文件的变化并输出到对应文件夹

        sass --watch ./sass:./css

sass编译内容变化

 例如:main.scss编译为main.css内容变化如下

main.scss

  1. // 引入其他scss文件
  2. // 后缀名可以省略
  3. @use './util/base';
  4. // 引入css文件
  5. // 后缀名不能省略
  6. @use '../css/other.css';
  7. // 变量
  8. $size: 32px;
  9. $color: rgb(170, 0, 255);
  10. // 使用变量
  11. .box {
  12. width: 100px;
  13. height: 100px;
  14. // 访问变量
  15. font-size: $size;
  16. background-color: $color;
  17. }
  18. // 嵌套
  19. // 嵌套的本质就是后代选择器
  20. ul {
  21. border: 5px solid #ff0;
  22. li {
  23. background-color: #f00;
  24. }
  25. }
  26. .box2 {
  27. // 引入其他 scss 文件内的变量
  28. width: base.$width;
  29. height: base.$height;
  30. background-color: #0f0;
  31. }
  32. // 定义一个混合
  33. @mixin fn($a: 50px, $b: orange){
  34. height: $a;
  35. color: $b;
  36. border: 1px solid #000;
  37. }
  38. .box3 {
  39. width: 100px;
  40. // 不带参数调用混合
  41. @include fn;
  42. // 带指定参数
  43. @include fn($b: rgb(132, 0, 255));
  44. // 按顺序传参
  45. @include fn(50px, #f00);
  46. }
  47. // 样式的继承
  48. // 声明父样式
  49. %parent {
  50. width: 200px;
  51. height: 200px;
  52. background-color:rgb(132, 0, 255);
  53. }
  54. .box4 {
  55. // 子样式继承父样式
  56. @extend %parent;
  57. // 子样式可以有自己的样式
  58. color: #fff;
  59. // 也可以覆盖父样式
  60. width: 300px;
  61. }
  62. // 四则运算
  63. .box4 {
  64. // 加减法需要相同单位进行运算
  65. // width: 1px + 1em;
  66. width: 100px + 100px;
  67. width: 200px - 100px;
  68. width: 100% - 50%;
  69. // 乘除
  70. // 乘法只能用一个带单位的值乘以一个不带单位的数字
  71. width: 5px * 10;
  72. // width: (50rem/25rem) * 1px;
  73. // 除法只能使用 calc 计算函数
  74. width: calc(50rem / 25rem) * 1px;
  75. }

main.css

  1. h1 {
  2. background-color: rgb(0, 191, 255);
  3. }
  4. h2 {
  5. background-color: violet;
  6. }
  7. .box {
  8. width: 100px;
  9. height: 100px;
  10. font-size: 32px;
  11. background-color: rgb(170, 0, 255);
  12. }
  13. ul {
  14. border: 5px solid #ff0;
  15. }
  16. ul li {
  17. background-color: #f00;
  18. }
  19. .box2 {
  20. width: 500px;
  21. height: 700px;
  22. background-color: #0f0;
  23. }
  24. .box3 {
  25. width: 100px;
  26. height: 50px;
  27. color: orange;
  28. border: 1px solid #000;
  29. height: 50px;
  30. color: rgb(132, 0, 255);
  31. border: 1px solid #000;
  32. height: 50px;
  33. color: #f00;
  34. border: 1px solid #000;
  35. }
  36. .box4 {
  37. width: 200px;
  38. height: 200px;
  39. background-color: rgb(132, 0, 255);
  40. }
  41. .box4 {
  42. color: #fff;
  43. width: 300px;
  44. }
  45. .box4 {
  46. width: 200px;
  47. width: 100px;
  48. width: 50%;
  49. width: 50px;
  50. width: 2px;
  51. }
  52. /*# sourceMappingURL=main.css.map */

三、bootstrap

官网:<https://getbootstrap.com/>

bootstrap 是一个用于制作页面界面的框架

安装:
1、点击页面中的 download 按钮:<https://getbootstrap.com/docs/5.0/getting-started/download/>

2、使用node.js 在终端中输入npm init -y 和 npm i bootstrap

display显示卡方式 https://getbootstrap.com/docs/5.2/utilities/display/

浮动float https://getbootstrap.com/docs/5.2/utilities/float/

定位position https://getbootstrap.com/docs/5.2/utilities/position/

flex布局 https://getbootstrap.com/docs/5.2/utilities/flex/

grid网格 https://getbootstrap.com/docs/5.2/layout/grid/

背景色 https://getbootstrap.com/docs/5.2/utilities/background/

文本色 https://getbootstrap.com/docs/5.2/utilities/colors/

文本+背景色 https://getbootstrap.com/docs/5.2/helpers/color-background/

元素大小 https://getbootstrap.com/docs/5.2/utilities/sizing/

内边距外边距space: https://getbootstrap.com/docs/5.2/utilities/spacing/

元素间的间距stacks: https://getbootstrap.com/docs/5.2/helpers/stacks/

文本有关内容 https://getbootstrap.com/docs/5.2/utilities/text/

选择 https://getbootstrap.com/docs/5.2/forms/select/

单选和多选等按钮 https://getbootstrap.com/docs/5.2/forms/checks-radios/

表单验证

1、原生表单验证

  1. <!--
  2. input 的验证属性
  3. required
  4. pattern
  5. minlength maxlength
  6. min max
  7. type
  8. novalidate 屏蔽html自带的验证报告
  9. input 的 validity 属性
  10. validity.valueMissing
  11. validity.patternMismatch
  12. validity.rangeOverflow
  13. validity.rangeUnderflow
  14. validity.tooLong
  15. validity.tooShort
  16. validity.valid
  17. 自定义提示信息
  18. input.setCustomValidity
  19. form 或 input 的 checkValidity
  20. 显示验证报告
  21. form.reportValidity()
  22. 表单验证总结步骤
  23. 1. 给表单添加 novalidate 屏蔽自动验证报告
  24. 2. 对每个元素的 validity 属性进行验证
  25. 3. 根据每个元素的验证结果设置自定义异常 setCustomValidity
  26. 4. 提交验证报告
  27. 5. 根据验证结果执行后续网络操作
  28. -->
  29. <!DOCTYPE html>
  30. <html lang="en">
  31. <head>
  32. <meta charset="UTF-8">
  33. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  34. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  35. <title>Document</title>
  36. <link rel="stylesheet" href="./css/bootstrap.css">
  37. </head>
  38. <body class="d-flex justify-content-center">
  39. <!-- novalidate 屏蔽默认的表单提交时的验证报告
  40. 屏蔽掉自动的验证报告的目的 是为了我们自己好去控制验证报告
  41. -->
  42. <form class="card p-3" style="width: 500px;" onsubmit="return fa
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/110767
推荐阅读
  

闽ICP备14008679号