淺談html5標(biāo)簽css3的常用樣式
<meta name=''>
name:有如下6個(gè)值:
application-name:文檔名或者應(yīng)用名,整個(gè)文檔只能包含一個(gè)值。
author:文檔作者
description:文檔描述
generator:生成文檔的程序。
keywords:網(wǎng)頁(yè)關(guān)鍵字,用英文逗號(hào)分隔。
<a href="http://m.likemindfilms.com">圖趣網(wǎng)</a>
href:路徑
<img src="../img/a.jpg" alt="此圖無(wú)法表現(xiàn)" border="1px solid red" width="400" height="250"/>
src:圖片路徑
<table>標(biāo)簽的屬性
Border 邊框
Cellspacing 表格外邊距
Cellpadding 表格內(nèi)邊距
Align 位置
Bgcolor:背景色
Background:背景圖片
Bordercolor:邊框顏色
table中 <tr></tr>
<td colspan="2"></td> colspan 跨2列
rowspan 跨 行
<input type="">
type值
text 文本
password 密碼
radio 單選
checkbox 多選
reset 重置
file 文件上傳
submit 提交表單
image 圖形提交
button 通俗按鈕
分組下拉
XML/HTML Code復(fù)制內(nèi)容到剪貼板
<select name="city" id="city">
<optgroup label="山東">
<option value="yt">煙臺(tái)</option>
<option value="qd">青島</option>
<option value="wh">威海</option>
</optgroup>
<optgroup label="北京">
<option value="bj">bj</option>
<option value="tam">tam</option>
<option value="zong">zong</option>
</optgroup>
</select>
筆墨區(qū)域textarea
XML/HTML Code復(fù)制內(nèi)容到剪貼板
<textarea name="textarea" id="textarea" cols="30" rows="10" readonly="readonly"
disabled="disabled">
1</textarea>
cols 寬度 rows 高度 readonly 只讀
css樣式
字體、字號(hào):
font(縮寫情勢(shì))
font-weight(粗細(xì)) 正常(normal) 粗體(bold) 斜體(italic)
font-size(大?。?
font-family(字系統(tǒng)列)
font-style(字體樣式)
字體顏色:
color
opacity (透明度 css3)
行距、對(duì)齊等:
line-height (行高)
text-align (對(duì)齊)
letter-spacing (字符間距)
text-decoration (文本修飾 )
overflow 超出的部分隱蔽
text-overflow
text-overflow文本裁剪 clip裁剪文本時(shí)不添加... ellipsis 裁剪時(shí)加... 細(xì)致:不換行和over-flow控制
text-shadow 陰影
text-indent
背景屬性:
background (縮寫情勢(shì))
background-color(背景色 )
background-image(背景圖 )
background-repeat(背景圖重復(fù)體例 )
background-position(位置坐標(biāo)、偏移量)
列表常用
list-style: none無(wú)風(fēng)格 disc實(shí)心圓 circle空心圓 square 實(shí)心正方形 decimal 數(shù)字
盒子屬性:
margin(外邊距/邊界) 以上方為主 可寫1、2、4個(gè)值
border(邊框)
padding(內(nèi)邊距/添補(bǔ) )
后可加 -top 等方向
border-radius 邊框圓角
box-shadow 陰影
變形結(jié)果:transform
transform-origin 指定變換的起點(diǎn)
none無(wú)變換
translate(長(zhǎng)度值或百分比) translateX translateY 在水平、垂直方向平移
scale(數(shù)值)scaleX scaleY 在水平方向、垂直方向或兩個(gè)方向上縮放
rotate(角度)旋轉(zhuǎn)元素
skew(角度)skewX skewY 在水平方向、垂直方向或兩個(gè)方向上使元素傾斜肯定的角度
matrix 自定義
過(guò)渡結(jié)果:transition
transition-property 指定過(guò)渡的css屬性 默認(rèn)值 all
transition-duration 完成過(guò)渡的時(shí)間
transition-timing-function 指定過(guò)渡函數(shù) 緩動(dòng)結(jié)果默認(rèn)值ease 等同于(0.25, 0.1, 0.25, 1.0)
transition-delay 指定過(guò)渡開(kāi)始出現(xiàn)的耽誤時(shí)間
@keyframes:定義一個(gè)動(dòng)畫(huà)
animation
CSS Code復(fù)制內(nèi)容到剪貼板
<style>
.t5{
transition: 5s ease-out all; /*過(guò)渡 ease in 加速 out減速*/
}/*transition-delay耽誤*/
.t5:hover{
transform: skew(45deg,45deg)
}
@keyframes key {
0%{
background-color: red;width: 200px;height: 200px;
}
25%{
background-color: orange;width: 100px;height: 100px;transform: rotate(-90deg);
}
50%{
background-color: yellow;width: 60px;height: 60px;transform: none;
}
75%{
background-color: green;width: 120px;height: 120px;transform: none;
}
100%{
background-color: blue;width: 200px;height: 200px;transform: rotate(360deg);
}
}
.kt{
animation:key 1s;
/* animation-iteration-count: infinite;*//*無(wú)窮循環(huán)*/
background-color: yellow;
width: 200px;height: 200px;
}
</style>
<div class="kt t5"></div>
以上就是小編為大家?guī)?lái)的淺談html5標(biāo)簽css3的常用樣式悉數(shù)內(nèi)容了,盼望大家多多支撐圖趣網(wǎng)~
本文地址:http://m.likemindfilms.com/tutorial/wd3331.html
您可能還喜歡
- jquery Jcrop圖像裁切插件中文api文檔
- @media適配不同尺寸的手機(jī)
- 返回上一頁(yè)代碼的幾種寫法
- Dreamweaver CC 2014新功能介紹
- 深入了解viewport和px
- 優(yōu)秀CSS代碼書(shū)寫的10個(gè)規(guī)范
- 畫(huà)出你的風(fēng)格:HTML5創(chuàng)意畫(huà)板的設(shè)計(jì)教程
- Div中height:100%無(wú)效的解決辦法
- 網(wǎng)頁(yè)前端-網(wǎng)頁(yè)切圖命名規(guī)范
- 為網(wǎng)頁(yè)設(shè)計(jì)師而生的14個(gè)文本編輯器
- 專訪:石墨文檔產(chǎn)品總監(jiān)羅穎
- UI設(shè)計(jì)不得不知的移動(dòng)端UI尺寸適
- 光音移動(dòng)設(shè)計(jì)規(guī)范 — 表單類
- 體驗(yàn)設(shè)計(jì)中的排序問(wèn)題
- 網(wǎng)頁(yè)設(shè)計(jì)精粹 網(wǎng)頁(yè)中那些迷人的按
- aliued:響應(yīng)式設(shè)計(jì)的現(xiàn)狀與趨勢(shì)
- 10個(gè)智能對(duì)象處理的ps技巧
- 網(wǎng)頁(yè)UI - 原子設(shè)計(jì)理論(上)
- 如何通過(guò)設(shè)計(jì)提升banner點(diǎn)擊率?
- 晉小彥視覺(jué)設(shè)計(jì)系列文章(二):全屏