1. 程式人生 > >ATOM基礎教程一使用前端插件emmet(16)

ATOM基礎教程一使用前端插件emmet(16)

自減 styles 工程 expand string 元素符號 asc value adding

emmet簡介

http://blog.csdn.net/zsl10/article/details/51956791

emmet的前身是Zen coding,從事Web前端開發的工程師對該插件並不陌生,emmet使用仿CSS選擇器的語法來生成代碼,大大提高了HTML/CSS代碼編寫的速度。
emmet的主要功能有:

  • snippet(代碼片段)
  • abbreviation expand(簡寫展開)

emmet的主要特性有:

  • 簡寫支持嵌套
  • 簡寫支持分組
  • 簡寫支持乘法
  • 簡寫支持自增和自減,起序,編號

使用emmet快速生成HTML標簽

1 .快速編寫HTML代碼

  • html:5 或!:用於HTML5文檔類型
  • html:xt:用於XHTML過渡文檔類型
  • html:4s:用於HTML4嚴格文檔類型

使用:輸入html:5/html:xt/html:4s按下TAB
技術分享

2 .添加class、id、文本和屬性

  • class: .
  • id: #
  • 屬性: []
  • 內容:{}

  • 添加class
    技術分享

  • 添加id
    技術分享
  • 添加HTML元素內容
     技術分享
  • 添加HTML元素屬性
    技術分享
    3 .嵌套

  • > :子元素符號
    技術分享

  • +:同級標簽符號
    技術分享
  • ^:使該符號後的標簽提升到上一級
    技術分享
    4 .定義多個元素

  • *:乘法
    技術分享

  • $:自增($:從1開始遞增,$$:從01開始遞增,依次類推)
    技術分享

技術分享

  • $@-:自減
    技術分享

  • [email protected]

/* */:起序
技術分享
5 .隱式標簽
聲明一個帶類的標簽,Emmet會根據父標簽進行判定要生成的標簽,比如在<ul>中輸入.item,就會生成<li class="item"></li>

隱式標簽名稱:

  • li:用於ul和ol中
  • tr:用於table、tbody、thead和tfoot中
  • td:用於tr中
  • option:用於select和optgroup中

技術分享

6 .分組
通過()進行分組,快速生成代碼
技術分享

使用emmet快速生成CSS代碼

1 .值
單位別名:

  • p :%
  • e :em
  • x:ex

技術分享

技術分享

2 .模糊匹配
有些縮寫不太確定的時候,emmet會根據你的輸入內容匹配最接近的語法,比如輸入ov:h、ov-h、ovh和oh,生成的代碼是相同的:

overflow: hidden; 
  • 1
  • 1

技術分享

emmet常用縮寫

只列舉一部分,其他的可以對比。
1. HTML

  • a
<a href=""></a>
  • 1
  • 1
  • link
<link rel="stylesheet" href="" />
  • 1
  • 1
  • meta:utf
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"  />
  • 1
  • 1
  • script:src
<script src=""></script>
  • 1
  • 1
  • form:post
<form action="" method="post"></form>
  • 1
  • 1
  • inp
<input type="text" name="" id="" />
  • 1
  • 1
  • input:h
<input type="hidden" name="" />
  • 1
  • 1
  • input:p
<input type="password" name="" id="" />
  • 1
  • 1
  • select
<select name="" id=""></select>
  • 1
  • 1
  • select+
<select name="" id="">
    <option value=""></option> 
</select>
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3
  • opt
<option value=""></option>
  • 1
  • 1
  • tarea
<textarea name="" id="" cols="30" rows="10"></textarea>
  • 1
  • 1
  • btn:s
<button type="submit"></button>
  • 1
  • 1

2. CSS

  • pos:a
position:absolute;
  • 1
  • 1
  • t
top:;
  • 1
  • 1
  • r
right:;
  • 1
  • 1
  • fl
float:left;
  • 1
  • 1
  • d:n
display:none;
  • 1
  • 1
  • ov:h
overflow:hidden;
  • 1
  • 1
  • cur:p
cursor:pointer;
  • 1
  • 1
  • mb
margin-bottom:;
  • 1
  • 1
  • pl
padding-left:;
  • 1
  • 1
  • miw
min-width:;
  • 1
  • 1
  • ta:c
text-align:center;
  • 1
  • 1
  • bg
background:#000;
  • 1
  • 2
  • 1
  • 2
  • bg+
    background:#fff url() 0 0 no-repeat;
  • bgc
background-color:#fff;
  • 1
  • 1
    • bd+
      border:1px solid #000;
    • ac:c
      align-content:center;

ATOM基礎教程一使用前端插件emmet(16)