当前位置: 首页 > news >正文

网站建设毕业答辩ppt怎么写wordpress 获取当前id

网站建设毕业答辩ppt怎么写,wordpress 获取当前id,wordpress直接访问站点,合肥建设发展局网站Sass 常用功能 Sass 功能有很多#xff0c;这边只列举一些比较常用的。 嵌套规则 (Nested Rules) Sass 允许将一套 CSS 样式嵌套进另一套样式中#xff0c;内层的样式将它外层的选择器作为父选择器。 编译前 .box {.box1 {background-color: red;}.box2 {background-col…Sass 常用功能 Sass 功能有很多这边只列举一些比较常用的。 嵌套规则 (Nested Rules) Sass 允许将一套 CSS 样式嵌套进另一套样式中内层的样式将它外层的选择器作为父选择器。 编译前 .box {.box1 {background-color: red;}.box2 {background-color: blueviolet;} }编译后 .box .box1 {background-color: red; } .box .box2 {background-color: blueviolet; } .box .box3 {background-color: blue; }父选择器 (Referencing Parent Selectors: ) 在嵌套 CSS 规则时有时也需要直接使用嵌套外层的父选择器。 编译前 button {width: 100px;height: 30px;:hover {background-color: red;} }编译后 button {width: 100px;height: 30px; } button:hover {background-color: red; }属性嵌套 (Nested Properties) 有些 CSS 属性遵循相同的命名空间 ( namespace )比如 font-family , font-size , font-weight 都以 font 作为属性的命名空间。为了便于管理这样的属性同时也为了避免了重复输入Sass 允许将属性嵌套在命名空间中。 编译前 .my-content {padding: {top: 10px;right: 10px;bottom: 10px;left: 10px;}font: {size: 30px;weight: bold;} }编译后 .my-content {padding-top: 10px;padding-right: 10px;padding-bottom: 10px;padding-left: 10px;font-size: 30px;font-weight: bold; }注释 /* / 与 // (Comments: / */ and //) 单行注释不会被编译到 css 文件中多行注释中可以使用差值语句 “” 类型 ES6 的模板字符串。 单行注释 编译前 // These comments are only one line long each. // They wont appear in the CSS output, // since they use the single-line comment syntax..my-content {width: 100%;height: 100%; }编译后 .my-content {width: 100%;height: 100%; }多行注释 编译前 /* This comment is* several lines long.* since it uses the CSS comment syntax,* it will appear in the CSS output. */.my-content {width: 100%;height: 100%; }编译后 /* This comment is* several lines long.* since it uses the CSS comment syntax,* it will appear in the CSS output. */ .my-content {width: 100%;height: 100%; }变量 $ (Variables: $) 编译前 $width: 100px; $height: 100px;.box {width: $width;height: $height; }编译后 .box {width: 100px;height: 100px; }运算 (Operations) 编译前 .box {width: 100px 100px;height: 200px / 2;background-color: royalblue; }编译后 .box {width: 200px;height: 100px;background-color: royalblue; }插值语句 #{} (Interpolation: #{}) 编译前 $name: box; $attr: background;.box {.#{$name}1 {width: 100px;height: 100px;#{$attr}-color: red;}.#{$name}2 {width: 100px;height: 100px;#{$attr}-color: blueviolet;}.#{$name}3 {width: 100px;height: 100px;#{$attr}-color: blue;} }编译后 .box .box1 {width: 100px;height: 100px;background-color: red; } .box .box2 {width: 100px;height: 100px;background-color: blueviolet; } .box .box3 {width: 100px;height: 100px;background-color: blue; }import Sass 拓展了 import 的功能允许其导入 SCSS 或 Sass 文件。被导入的文件将合并编译到同一个 CSS 文件中另外被导入的文件中所包含的变量或者混合指令 ( mixin ) 都可以在导入的文件中使用。 编译前base.scss import ./reset.scss;.box {.#{$name}1 {width: 100px;height: 100px;#{$attr}-color: red;}.#{$name}2 {width: 100px;height: 100px;#{$attr}-color: blueviolet;}.#{$name}3 {width: 100px;height: 100px;#{$attr}-color: blue;} }编译前reset.scss * {margin: 0;padding: 0; }$name: box; $attr: background;编译后base.css * {margin: 0;padding: 0; }.box .box1 {width: 100px;height: 100px;background-color: red; } .box .box2 {width: 100px;height: 100px;background-color: blueviolet; } .box .box3 {width: 100px;height: 100px;background-color: blue; }嵌套 import 编译前base.scss .box {import box; }编译前box.scss .box1 {width: 100px;height: 100px;background-color: red; }.box2 {width: 100px;height: 100px;background-color: blue; }.box3 {width: 100px;height: 100px;background-color: blueviolet; }编译后base.css .box .box1 {width: 100px;height: 100px;background-color: red; } .box .box2 {width: 100px;height: 100px;background-color: red; } .box .box3 {width: 100px;height: 100px;background-color: red; }extend 编译前 .box {width: 100px;height: 100px; }.box {.box1 {extend .box;background-color: red;}.box2 {extend .box;background-color: blueviolet;}.box3 {extend .box;background-color: blue;} }编译后 .box, .box .box1, .box .box2, .box .box3 {width: 100px;height: 100px; }.box .box1 {background-color: red; } .box .box2 {background-color: blueviolet; } .box .box3 {background-color: blue; }if 当 if 的表达式返回值不是 false 或者 null 时条件成立输出 {} 内的代码。 编译前 $type: monster;p {if $type ocean {color: blue;} else if $type matador {color: red;} else if $type monster {color: green;} else {color: black;} }编译后 p {color: green; }for for 指令可以在限制的范围内重复输出格式每次按要求变量的值对输出结果做出变动。这个指令包含两种格式for $var from “start” through “end”或者 for $var from “start” to “end” 。 区别在于 through 与 to 的含义当使用 through 时条件范围包含 “start” 与 “end” 的值而使用 to 时条件范围只包含 “start” 的值不包含 “end” 的值。另外 $var 可以是任何变量比如 $i “start” 和 “end” 必须是整数值。 编译前 for $i from 1 through 3 {.item-#{$i} {width: 2em * $i;} }编译后 .item-1 {width: 2em; }.item-2 {width: 4em; }.item-3 {width: 6em; }each each 指令的格式是 $var in “list”, $var 可以是任何变量名比如 $length 或者 n a m e 而 l i s t 是一连串的值也就是值列表。 e a c h 是一个循环语句 name而 list 是一连串的值也就是值列表。each是一个循环语句 name而list是一连串的值也就是值列表。each是一个循环语句key、$value、相当于 javascript 中的对象键值对名字可以自定义。 编译前 each $key, $value in (h1: 2em, h2: 1.5em, h3: 1.2em) {#{$key} {font-size: $value;} }编译后 h1 {font-size: 2em; }h2 {font-size: 1.5em; }h3 {font-size: 1.2em; }while while 指令重复输出格式直到表达式返回结果为 false。这样可以实现比 for 更复杂的循环只是很少会用到。 编译前 $i: 3; while $i 0 {.item-#{$i} {width: 2em * $i;}$i: $i - 1; }编译后 .item-3 {width: 6em; }.item-2 {width: 4em; }.item-1 {width: 2em; }混合指令 mixin include 使用 mixin 指令定义混合样式使用 include 指令引用混合样式格式是在其后添加混合名称以及需要的参数可选。 编译前 mixin box {width: 100px;height: 100px; }.box {.box1 {include box;background-color: red;}.box2 {include box;background-color: blueviolet;}.box3 {include box;background-color: blue;} }编译后 .box .box1 {width: 100px;height: 100px;background-color: red; } .box .box2 {width: 100px;height: 100px;background-color: blueviolet; } .box .box3 {width: 100px;height: 100px;background-color: blue; }参数 (Arguments) 参数用于给混合指令中的样式设定变量并且赋值使用。在定义混合指令的时候按照变量的格式通过逗号分隔将参数写进圆括号里。引用指令时按照参数的顺序再将所赋的值对应写进括号。 编译前 mixin box($color) {width: 100px;height: 100px;background-color: $color; }.box {.box1 {include box(red);}.box2 {include box(blueviolet);}.box3 {include box(blue);} }编译后 .box .box1 {width: 100px;height: 100px;background-color: red; } .box .box2 {width: 100px;height: 100px;background-color: blueviolet; } .box .box3 {width: 100px;height: 100px;background-color: blue; }函数指令 (Function Directives) Sass 支持自定义函数并能在任何属性值或 Sass script 中使用。 编译前 function box-width($width) {return $width * 2; }.box {.box1 {width: box-width(100px);height: 100px;background-color: red;}.box2 {width: box-width(100px);height: 100px;background-color: blueviolet;}.box3 {width: box-width(100px);height: 100px;background-color: blue;} }编译后 .box .box1 {width: 200px;height: 100px;background-color: red; } .box .box2 {width: 200px;height: 100px;background-color: blueviolet; } .box .box3 {width: 200px;height: 100px;background-color: blue; }原文链接菜园前端
http://www.dnsts.com.cn/news/149476.html

相关文章:

  • 百度蜘蛛开发网站中国经济网
  • 手机微信官方网站阿里巴巴logo生成器
  • 自己怎么做拼单网站网站流量统计分析报告
  • 厦门网站建设工作东营微信网站制作
  • 网站排名logo怎么做wordpress悬浮刷新按钮
  • WordPress如何建立手机网站服务器租用哪家好而且便宜
  • 佛山网站制作的公司做网站的价钱
  • 银川住房和城乡建设厅网站模仿网站怎么做
  • .net网站开发架构wordpress 中文名注册
  • 用vue框架做的pc端网站dedecms 子网站
  • 用别人服务器做网站网站建设方案和报价表
  • 创建网站怎么收费大兴快速网站建设公司
  • 网站交互方式望野原文
  • 企业网站建设对网络营销的影响主要表现在( )搭建房子流程
  • 成都网站制作成都seo排名课程咨询电话
  • 营销型网站建设设计服务网站后台怎么做超链接
  • 书籍教你如何做网站外贸相关岗位人才招聘启事
  • 可以免费做试卷题目的网站怎么提高自己网站的知名度
  • 深圳做小程序网站设计武穴建设网站
  • 深圳住房和建设局网站 宝安wordpress的结构
  • 仿网站教程搜索引擎作弊的网站有哪些
  • 四川建设人员数据网站中国能源建设集团有限公司总部
  • 备案 网站 漏接 电话旅游网站建设的背景
  • 做店标 做店招的网站桂林漓江景区游玩攻略
  • 做团建活动网站公众号创建好了怎么在微信里搜索
  • 苏州建设网站公司在什么地方网络舆情监测适合女生嘛
  • 服务器维护公告seo推广系统
  • 安徽科技网站建设企业网站的建设目的包含什么
  • 晋江做网站的公司哪家好南通外贸建站
  • 宿迁网站建设托管深入解析wordpress二手