成人无码视频,亚洲精品久久久久av无码,午夜精品久久久久久毛片,亚洲 中文字幕 日韩 无码

資訊專欄INFORMATION COLUMN

頁面制作HTML+CSS基礎(chǔ)亂燉

ityouknow / 1451人閱讀

摘要:標(biāo)簽大集合語義化標(biāo)簽頁面內(nèi)錨點(diǎn)我跳跳到這里來可用于回到頂部功能。表格中表示行,和表示列。當(dāng)超出時(shí)會自動換行。屬性清除浮動通用方案實(shí)際上是添加了一個(gè)看不見的點(diǎn)號。

1.

里的 一定要放在第一行 ,如果放在了</b>下面可能會有問題。</p> <b>2.標(biāo)簽大集合</b> <p></p> <b>3.HTML5語義化標(biāo)簽</b> <p></p> <b>4.頁面內(nèi)錨點(diǎn)</b> <pre><a href="#jump">我跳!</a> ... <div class="6a22guqa" id="jump">跳到這里來!</div></pre> <p>可用于“回到頂部”功能。</p> <b>5.<b><img></b>標(biāo)簽一般要求寫上<b>alt</b>屬性</b> <p>6.HTML5中可以用<b><video></b>標(biāo)簽插入視頻,用<b><audio></b>標(biāo)簽插入音頻</p> <p>7.總記不住row表示行,column表示列。表格中tr表示行(table row),th和td(table data cell)表示列。</p> <b>8.語義化的好處</b> <p>(1)SEO(Search Engine Optimization)搜索引擎優(yōu)化<br>(2)提高可訪問性,使盲人使用屏幕閱讀器更好的訪問。<br>(3)提高代碼可讀性,便于多人修改維護(hù),提高開發(fā)效率。</p> <b>9.實(shí)體字符</b> <pre>  > < ...</pre> <p></p> <p>10.css引入</p> <pre><link rel="stylesheet" href="common.css"></pre> <b>11.屬性選擇器</b> <pre><input class="section-left" type="text" disabled value="張三"> <p class="section-right">right</p> <div id="6a22guqa" class="nav">nav</div> //css [disabled] { ... } input[type="text"] { ... } //屬性值不加雙引號也可以哎 [type=text] { ... } //關(guān)于是否需要使用引號:當(dāng)屬性值包含空格或者有特殊符號時(shí),必須要使用引號 [class^="section"] { ... } //這樣可以選中以class屬性以"section"開頭的元素,即上面的input 和 p </pre> <b>偽類選擇器: 一個(gè)冒號</b> <p>12.a標(biāo)簽上的偽類選擇器<strong>順序</strong>從上到下不能變:<b>link visited hover active</b></p> <p></p> <p>13.<b>li:nth-child(even) { ... }</b> 或 <b>li:nth-child(2n) { ... }</b> 選中偶數(shù)項(xiàng)li元素</p> <p>14.<b>:not(p)</b> 不包含p元素。<br><b>:not(.class-a)</b> 不包含class值有<b>class-a</b>的元素。</p> <b>偽元素選擇器:: CSS3變?yōu)閮蓚€(gè)冒號</b> <p>15.<b>::first-letter { ... }</b> 第一個(gè)字母或漢字<br>16.<b>::first-line { ... }</b> 第一行<br>17.<b>::before 和 ::after</b></p> <pre>p::before{ content: "before"; }//在元素前添加內(nèi)容 p::after{ content: "after"; }//在元素后添加內(nèi)容</pre> <p>18.<b>::selection{ ... }</b> 應(yīng)用于被用戶選中的內(nèi)容的樣式</p> <p>19.兄弟選擇器 <b>h1+p { ... }</b> 選中h1后面同級的<strong>緊鄰著的一個(gè)</strong>p元素<br>20.多個(gè)兄弟選擇器 <b>h1~p { ... }</b> 選中h1后面同級的所有p元素,不需要緊鄰著</p> <p>21.繼承屬性:<b>color , font , text-align , list-style </b><br>22.非繼承屬性:<b>background , border , position</b><br>如何從文檔中知道當(dāng)前屬性是否可以繼承?文檔中Inherited為yes即為可以繼承。</p> <p>23.選擇器優(yōu)先級</p> <p></p> <p>https://jsfiddle.net/DarcyAn/... 奇怪,這個(gè)咋是偽元素選擇器優(yōu)先級比偽類的高呢?</p> <p><strong>注意偽類與類優(yōu)先級相同,偽元素與標(biāo)簽優(yōu)先級相同。</strong></p> <p>24.優(yōu)先級最高: <b>p { color: red !important; }</b></p> <b>CSS文本</b> <p>25.<b>font</b>屬性至少要設(shè)置<b>font-size</b> 和 <b>font-family</b>.</p> <p></p> <p>26.<b>text-indent</b>屬性原本用于設(shè)置首行縮進(jìn),一般設(shè)置為<b>2em</b>,也可設(shè)置<strong>負(fù)值</strong>然后配合<b>overflow: hidden;</b>來達(dá)到隱藏文本的效果。 </p> <p>27.<b>white-space</b>:<br><b>nowrap</b>不換行。<br><b>pre</b> 完完整整保留了tab和空格,超出時(shí)也不會換行。<br><b>pre-wrap</b> 保留了tab和空格。當(dāng)超出時(shí)會自動換行。</p> <p>28.<b>word-wrap: break-word;</b> 長單詞超出時(shí)換行。屬性名現(xiàn)由<b>word-wrap</b>改為<b>overflow-wrap</b>。</p> <p>29.<b>text-shadow: 1px 2px pink;</b> 文字陰影:x軸偏移 y軸偏移 [陰影模糊半徑]? [顏色]?。</p> <p>30.text-overflow: clip | ellipsis; <br>一定要配合 <b>overflow: hidden; white-space: nowrap;</b> 同時(shí)服用。</p> <b>CSS盒模型</b> <p>盒模型概念、width、height、padding、margin(水平居中)、border、border-radius、overflow、box-sizing、box-shadow、outline</p> <b>31.margin合并</b> <p>(1)相鄰元素的margin會合并<br>(2)父元素與子元素的margin會合并。(前提是父子元素之間沒有padding、border和其他元素)<br>MDN外邊距合并</p> <b>32.<b>border-radius: 50%;</b>是一個(gè)圓</b> <p>圓角的水平半徑是寬度的50%,垂直半徑是高度的50%,所以是一個(gè)圓。</p> <p>33.<b>box-shadow: 4px 4px 3px 3px red</b>可以只設(shè)置前兩個(gè)值.</p> <p></p> <p>還可以設(shè)置 <b>inset</b> 內(nèi)陰影,以及<strong>多陰影</strong>(用逗號隔開即可)。</p> <b>CSS背景</b> <p>34.<b>background-attachment: scroll | local ;</b> 設(shè)置當(dāng)內(nèi)容滾動時(shí),背景圖片的狀態(tài)。<br><b>scroll</b>: 背景圖不動。<br><b>local</b>: 背景圖隨與內(nèi)容一起滾動。</p> <p>35.<b>background-position: 20% 50%;</b> 設(shè)置為百分比的值要特別注意。<br>上述語句意思是:x軸上圖片的20%在容器的20%的位置,y軸上圖片的50%在容器的50%的位置,看圖:</p> <p></p> <p>如果這樣設(shè)置:<b>background-position: 50% 50%;</b>, 就居中了。也等于<b>background-position: center center;</b></p> <p>可以設(shè)置負(fù)值,這在sprite雪碧圖中經(jīng)常用到。</p> <p>36.線性漸變 <b>linear-gradient()</b> 可以用來畫出漸變背景。</p> <pre>background: linear-gradient(to bottom, white,black);</pre> <p>向下漸變</p> <p>37.background縮寫: <b>position</b>與 <b>size</b> 之間要加 <b>/</b> 不然會沖突。</p> <p></p> <b>CSS布局</b> <p>布局簡介、display(水平居中、居中導(dǎo)航)、position(輪播頭圖、固定頂欄、遮罩、三行自適應(yīng)布局)、float(兩列布局)、flex(三行兩列自適應(yīng))</p> <p>38.position定位,如果同時(shí)設(shè)置top和bottom,那么元素會被撐開變大。</p> <p>39.<b>z-index</b> 存在一個(gè)<strong>棧</strong>的概念。<br>紅色元素的父元素z-index 為 9 ,藍(lán)色元素的z-index為1,所以雖然藍(lán)色元素z-index為100大于紅色的1,但是因?yàn)榧t色的參照物的z-index高,所以紅色還是在藍(lán)色上面。相當(dāng)于兩副撲克牌上下疊加,下面那一副撲克牌不管內(nèi)部怎樣調(diào)整,都無法跑到上面那副撲克牌上面。</p> <p></p> <p>40.<b>position: relative;</b> 參照物為元素本身,最常用的使用場景為絕對定位元素的參照物(=?ω?)?</p> <p>41.<b>position: absolute;</b> <strong>默認(rèn)寬度是內(nèi)容寬度</strong>,脫離文檔流。</p> <p>42.<b>position: fixed;</b> 常用場景:遮罩mask。</p> <p>43.<b>clear屬性</b>清除浮動通用方案:<b>.clearfix:after{ ... }</b> 實(shí)際上是添加了一個(gè)看不見的點(diǎn)號。</p> <p>主要代碼:</p> <pre>.clearfix: after { content: "."; display: block; clear: both; //到這為止的前三條是用于清除浮動:設(shè)置了clear:both的塊級元素可以清除浮動 height: 0; overflow: hidden; visibility: hidden; //后面三條是為了讓點(diǎn)號不可見 }</pre> <p>將clearfix這個(gè)class添加到浮動元素的父元素上,就清除了因?yàn)樽釉馗涌s成一條的父元素的影響,完整代碼見:<br>jsfiddle栗子</p> <p>44.flex布局 實(shí)現(xiàn)三行自適應(yīng)+兩列自適應(yīng)<br>東西略多,放到這里了:<br>https://segmentfault.com/a/11...</p> <b>CSS變形 <b>transform:</b> </b> <p>45.<b>transform: translate(20%,20%);</b> 移動。這里的20%參照物是本元素的寬和高</p> <p>46.<b>transform: skew(30deg);</b> 傾斜。<br>y軸負(fù)方向 向 x軸正方向傾斜, x軸正方向 向 y軸負(fù)方向傾斜。<br>一張相當(dāng)直觀的圖在這里:<br></p> <p>47.<b>transform: translate(100px) rotate(45deg);</b> 先移動,再旋轉(zhuǎn)。<br>與 先旋轉(zhuǎn),再移動:<b>transform: rotate(45deg) translate(100px);</b> <strong>效果是不一樣的</strong>。<br>因?yàn)?strong>旋轉(zhuǎn)后,x軸與y軸方向已經(jīng)發(fā)生了變化</strong>。</p> <b>CSS動畫: 過渡效果<b>transition</b> + 動畫<b>animation</b> </b> <p>48.<b>transition</b>語法:</p> <pre>transition: <single-transition> [,<single-transition>]; //可包含多個(gè)動畫 //每個(gè)動畫的變化 <single-transition>: <transition-property> <transition-duration> <transition-timing-function> <transition-delay></pre> <p>eg1:<b>transition: color 2s ease 3s, left 2s;</b><br>eg2:<b>transition: 2s;</b> 等價(jià)于 <b>transition: all 2s ease 0;</b></p> <p>49.animation 與 transition區(qū)別:<br>(1)transition需要hover或click或js去<strong>觸發(fā)</strong>,而animation是<strong>自動運(yùn)行</strong>的。<br>(2)animation可以做<strong>多幀</strong>動畫。</p> <p>50.<b>animation</b>語法:</p> <pre>animation: <single-animation>[,<single-animation>] //每個(gè)動畫包含: <single-animation>: <animation-name> <duration> <timing-function> <delay> <iteration-count> <direction> <fill-mode> <play-state>; @-webkit-keyframes abc { 0%{ left:0; top: 0;} 50%{ left: 250px; top: 100px; } 100%{ left: 500px; top: 0; } } // 0% 等價(jià)于 from , 100% 等價(jià)于 to @-webkit-keyframes flash { //閃動效果 0%, 50%, 100% { opacity: 1; } 25%, 75% { opacity: 0.1; } }</pre> <p>eg1: <b>animation: abc 2s ease 0s infinite reverse both running; </b><br>eg1: <b>animation: abc 2s, abcd 2s both; </b></p> </div> <div id="6a22guqa" class="mt-64 tags-seach" > <div id="6a22guqa" class="tags-info"> <a style="width:120px;" title="云服務(wù)器" href="http://m.hztianpu.com/site/active/kuaijiesale.html?ytag=seo">云服務(wù)器</a> <a style="width:120px;" title="GPU云服務(wù)器" href="http://m.hztianpu.com/site/product/gpu.html">GPU云服務(wù)器</a> <a style="width:120px;" title="html+css基礎(chǔ)" href="http://m.hztianpu.com/yun/tag/html+cssjichu/">html+css基礎(chǔ)</a> <a style="width:120px;" title="html頁面制作" href="http://m.hztianpu.com/yun/tag/htmlyemianzhizuo/">html頁面制作</a> <a style="width:120px;" title="html滾動頁面制作" href="http://m.hztianpu.com/yun/tag/htmlgundongyemianzhizuo/">html滾動頁面制作</a> <a style="width:120px;" title="css制作" href="http://m.hztianpu.com/yun/tag/csszhizuo/">css制作</a> </div> </div> <div id="6a22guqa" class="entry-copyright mb-30"> <p class="mb-15"> 文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。</p> <p>轉(zhuǎn)載請注明本文地址:http://m.hztianpu.com/yun/50680.html</p> </div> <ul class="pre-next-page"> <li id="6a22guqa" class="ellipsis"><a class="hpf" href="http://m.hztianpu.com/yun/50679.html">上一篇:web前端開發(fā)前的環(huán)境搭建</a></li> <li id="6a22guqa" class="ellipsis"><a class="hpf" href="http://m.hztianpu.com/yun/50681.html">下一篇:一次阿里面試后對函數(shù)本質(zhì)的理解</a></li> </ul> </div> <div id="6a22guqa" class="about_topicone-mid"> <h3 class="top-com-title mb-0"><span data-id="0">相關(guān)文章</span></h3> <ul class="com_white-left-mid atricle-list-box"> <li> <div id="6a22guqa" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.hztianpu.com/yun/111875.html"><b><em>頁面</em><em>制作</em><em>HTML</em>+<em>CSS</em><em>基礎(chǔ)</em><em>亂燉</em></b></a></h2> <p class="ellipsis2 good">摘要:標(biāo)簽大集合語義化標(biāo)簽頁面內(nèi)錨點(diǎn)我跳跳到這里來可用于回到頂部功能。表格中表示行,和表示列。當(dāng)超出時(shí)會自動換行。屬性清除浮動通用方案實(shí)際上是添加了一個(gè)看不見的點(diǎn)號。 1. 里的 一定要放在第一行 ,如果放在了下面可能會有問題。 2.標(biāo)簽大集合 showImg(https://segmentfault.com/img/bVMaUw?w=1366&h=767); 3.HTML5語義化標(biāo)簽...</p> <div id="6a22guqa" class="com_white-left-info"> <div id="6a22guqa" class="com_white-left-infol"> <a href="http://m.hztianpu.com/yun/u-1533.html"><img src="http://m.hztianpu.com/yun/data/avatar/000/00/15/small_000001533.jpg" alt=""><span id="6a22guqa" class="layui-hide64">ruicbAndroid</span></a> <time datetime="">2019-08-29 12:24</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="6a22guqa" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.hztianpu.com/yun/88166.html"><b>3月份前端資源分享</b></a></h2> <p class="ellipsis2 good">摘要:面試如何防騙一份優(yōu)秀的前端開發(fā)工程師簡歷是怎么樣的作為,有哪些一般人我都告訴他,但是他都不聽的忠告如何面試前端工程師 更多資源請Star:https://github.com/maidishike... 文章轉(zhuǎn)自:https://github.com/jsfront/mo... 3月份前端資源分享 1. Javascript 使用judge.js做信息判斷 javascript...</p> <div id="6a22guqa" class="com_white-left-info"> <div id="6a22guqa" class="com_white-left-infol"> <a href="http://m.hztianpu.com/yun/u-1486.html"><img src="http://m.hztianpu.com/yun/data/avatar/000/00/14/small_000001486.jpg" alt=""><span id="6a22guqa" class="layui-hide64">nanchen2251</span></a> <time datetime="">2019-08-21 15:21</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="6a22guqa" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.hztianpu.com/yun/51672.html"><b><em>HTML</em>-<em>CSS</em></b></a></h2> <p class="ellipsis2 good">摘要:但是,從字體上來說雪碧圖制作,使用以及相關(guān),圖文。由于采用了編譯,所以能夠保證在瀏覽器不支持標(biāo)準(zhǔn)布局的情況下,回滾到舊版本的,保證移動設(shè)備中能呈現(xiàn)出一樣的布局效果。我不想陷入和的紛爭,但是有一件事是確定的極大的提升了移動端 一勞永逸的搞定 flex 布局 尋根溯源話布局 一切都始于這樣一個(gè)問題:怎樣通過 CSS 簡單而優(yōu)雅的實(shí)現(xiàn)水平、垂直同時(shí)居中。記得剛開始學(xué)習(xí) CSS 的時(shí)候,看到 ...</p> <div id="6a22guqa" class="com_white-left-info"> <div id="6a22guqa" class="com_white-left-infol"> <a href="http://m.hztianpu.com/yun/u-1177.html"><img src="http://m.hztianpu.com/yun/data/avatar/000/00/11/small_000001177.jpg" alt=""><span id="6a22guqa" class="layui-hide64">xiaokai</span></a> <time datetime="">2019-08-01 18:21</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="6a22guqa" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.hztianpu.com/yun/112971.html"><b><em>HTML</em>-<em>CSS</em></b></a></h2> <p class="ellipsis2 good">摘要:但是,從字體上來說雪碧圖制作,使用以及相關(guān),圖文。由于采用了編譯,所以能夠保證在瀏覽器不支持標(biāo)準(zhǔn)布局的情況下,回滾到舊版本的,保證移動設(shè)備中能呈現(xiàn)出一樣的布局效果。我不想陷入和的紛爭,但是有一件事是確定的極大的提升了移動端 一勞永逸的搞定 flex 布局 尋根溯源話布局 一切都始于這樣一個(gè)問題:怎樣通過 CSS 簡單而優(yōu)雅的實(shí)現(xiàn)水平、垂直同時(shí)居中。記得剛開始學(xué)習(xí) CSS 的時(shí)候,看到 ...</p> <div id="6a22guqa" class="com_white-left-info"> <div id="6a22guqa" class="com_white-left-infol"> <a href="http://m.hztianpu.com/yun/u-1723.html"><img src="http://m.hztianpu.com/yun/data/avatar/000/00/17/small_000001723.jpg" alt=""><span id="6a22guqa" class="layui-hide64">CHENGKANG</span></a> <time datetime="">2019-08-29 14:11</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> <li> <div id="6a22guqa" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://m.hztianpu.com/yun/84988.html"><b>個(gè)人分享--web前端學(xué)習(xí)資源分享</b></a></h2> <p class="ellipsis2 good">摘要:前言月份開始出沒社區(qū),現(xiàn)在差不多月了,按照工作的說法,就是差不多過了三個(gè)月的試用期,準(zhǔn)備轉(zhuǎn)正了一般來說,差不多到了轉(zhuǎn)正的時(shí)候,會進(jìn)行總結(jié)或者分享會議那么今天我就把看過的一些學(xué)習(xí)資源主要是博客,博文推薦分享給大家。 1.前言 6月份開始出沒社區(qū),現(xiàn)在差不多9月了,按照工作的說法,就是差不多過了三個(gè)月的試用期,準(zhǔn)備轉(zhuǎn)正了!一般來說,差不多到了轉(zhuǎn)正的時(shí)候,會進(jìn)行總結(jié)或者分享會議!那么今天我就...</p> <div id="6a22guqa" class="com_white-left-info"> <div id="6a22guqa" class="com_white-left-infol"> <a href="http://m.hztianpu.com/yun/u-1525.html"><img src="http://m.hztianpu.com/yun/data/avatar/000/00/15/small_000001525.jpg" alt=""><span id="6a22guqa" class="layui-hide64">sherlock221</span></a> <time datetime="">2019-08-20 18:59</time> <span><i class="fa fa-commenting"></i>評論0</span> <span><i class="fa fa-star"></i>收藏0</span> </div> </div> </div> </li> </ul> </div> <div id="6a22guqa" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發(fā)表評論</span></h3> <div id="6a22guqa" class="xcp-publish-main flex_box_zd"> <div id="6a22guqa" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評論</a> </div> </div> </div> <div id="6a22guqa" class="site-box-content"> <div id="6a22guqa" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評論</span></h3> </div> <div id="6a22guqa" class="pages"></ul></div> </div> </div> <div id="6a22guqa" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="6a22guqa" class=""> <div id="6a22guqa" class="com_layuiright-box user-msgbox"> <a href="http://m.hztianpu.com/yun/u-105.html"><img src="http://m.hztianpu.com/yun/data/avatar/000/00/01/small_000000105.jpg" alt=""></a> <h3><a href="http://m.hztianpu.com/yun/u-105.html" rel="nofollow">ityouknow</a></h3> <h6>男<span>|</span>高級講師</h6> <div id="6a22guqa" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(105)" id="attenttouser_105" class="grad follow-btn notfollow attention">我要關(guān)注</a> <a href="javascript:login()" title="發(fā)私信" >我要私信</a> </div> <div id="6a22guqa" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://m.hztianpu.com/yun/ut-105.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/116824.html">百度MIP技術(shù)快速入門(上)</a></h3> <p>閱讀 2126<span>·</span>2019-08-30 15:54</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/112387.html">基于 vue + zhengAdmin 的一套后臺模板</a></h3> <p>閱讀 3755<span>·</span>2019-08-29 13:07</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/112050.html">H5前端常見問題</a></h3> <p>閱讀 3278<span>·</span>2019-08-29 12:39</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/108265.html">簡述Function類型</a></h3> <p>閱讀 1956<span>·</span>2019-08-26 12:13</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/105362.html">這篇文章, 讓你了解 JavaScript 中的原型(基礎(chǔ)篇-圖文)</a></h3> <p>閱讀 1700<span>·</span>2019-08-23 18:31</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/104657.html">判斷是否是閏年</a></h3> <p>閱讀 2311<span>·</span>2019-08-23 18:05</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/104505.html">cookie的學(xué)習(xí)之路</a></h3> <p>閱讀 1990<span>·</span>2019-08-23 18:00</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/104056.html">1.2 Node.js 安裝與使用-基礎(chǔ)配置-NodeJs+Express+Mysql實(shí)戰(zhàn)</a></h3> <p>閱讀 1200<span>·</span>2019-08-23 17:15</p></li> </ul> </div> <!-- 文章詳情右側(cè)廣告--> <div id="6a22guqa" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動</span></h6> <div id="6a22guqa" class="com_adbox"> <div id="6a22guqa" class="layui-carousel" id="right-item"> <div carousel-item> <div> <a href="http://m.hztianpu.com/site/active/kuaijiesale.html?ytag=seo" rel="nofollow"> <img src="http://m.hztianpu.com/yun/data/attach/240625/2rTjEHmi.png" alt="云服務(wù)器"> </a> </div> <div> <a href="http://m.hztianpu.com/site/product/gpu.html" rel="nofollow"> <img src="http://m.hztianpu.com/yun/data/attach/240807/7NjZjdrd.png" alt="GPU云服務(wù)器"> </a> </div> </div> </div> </div> <!-- banner結(jié)束 --> <div id="6a22guqa" class="adhtml"> </div> </div> </div> </div> </div> </div> </section> <!-- wap拉出按鈕 --> <div id="6a22guqa" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="6a22guqa" class="site-mobile-shade"></div> <!--付費(fèi)閱讀 --> <div class="6a22guqa" id="payread"> <div id="6a22guqa" class="layui-form-item">閱讀需要支付1元查看</div> <div id="6a22guqa" class="layui-form-item"><button class="btn-right">支付并查看</button></div> </div> <link rel="stylesheet" type="text/css" href="http://m.hztianpu.com/yun/static/js/neweditor/code/styles/tomorrow-night-eighties.css"> <footer> <div id="6a22guqa" class="layui-container"> <div id="6a22guqa" class="flex_box_zd"> <div id="6a22guqa" class="left-footer"> <h6><a href="http://m.hztianpu.com/"><img src="http://m.hztianpu.com/yun/static/theme/ukd//images/logo.png" alt="UCloud (優(yōu)刻得科技股份有限公司)"></a></h6> <p>UCloud (優(yōu)刻得科技股份有限公司)是中立、安全的云計(jì)算服務(wù)平臺,堅(jiān)持中立,不涉足客戶業(yè)務(wù)領(lǐng)域。公司自主研發(fā)IaaS、PaaS、大數(shù)據(jù)流通平臺、AI服務(wù)平臺等一系列云計(jì)算產(chǎn)品,并深入了解互聯(lián)網(wǎng)、傳統(tǒng)企業(yè)在不同場景下的業(yè)務(wù)需求,提供公有云、混合云、私有云、專有云在內(nèi)的綜合性行業(yè)解決方案。</p> </div> <div id="6a22guqa" class="right-footer layui-hidemd"> <ul class="flex_box_zd"> <li> <h6>UCloud與云服務(wù)</h6> <p><a href="http://m.hztianpu.com/site/about/intro/">公司介紹</a></p> <p><a >加入我們</a></p> <p><a href="http://m.hztianpu.com/site/ucan/onlineclass/">UCan線上公開課</a></p> <p><a href="http://m.hztianpu.com/site/solutions.html" >行業(yè)解決方案</a></p> <p><a href="http://m.hztianpu.com/site/pro-notice/">產(chǎn)品動態(tài)</a></p> </li> <li> <h6>友情鏈接</h6> <p><a >GPU算力平臺</a></p> <p><a >UCloud私有云</a></p> <p><a >SurferCloud</a></p> <p><a >工廠仿真軟件</a></p> <p><a >AI繪畫</a></p> <p><a >Wavespeed AI</a></p> </li> <li> <h6>社區(qū)欄目</h6> <p><a href="http://m.hztianpu.com/yun/column/index.html">專欄文章</a></p> <p><a href="http://m.hztianpu.com/yun/udata/">專題地圖</a></p> </li> <li> <h6>常見問題</h6> <p><a href="http://m.hztianpu.com/site/ucsafe/notice.html" >安全中心</a></p> <p><a href="http://m.hztianpu.com/site/about/news/recent/" >新聞動態(tài)</a></p> <p><a href="http://m.hztianpu.com/site/about/news/report/">媒體動態(tài)</a></p> <p><a href="http://m.hztianpu.com/site/cases.html">客戶案例</a></p> <p><a href="http://m.hztianpu.com/site/notice/">公告</a></p> </li> <li> <span><img src="https://static.ucloud.cn/7a4b6983f4b94bcb97380adc5d073865.png" alt="優(yōu)刻得"></span> <p>掃掃了解更多</p></div> </div> <div id="6a22guqa" class="copyright">Copyright ? 2012-2025 UCloud 優(yōu)刻得科技股份有限公司<i>|</i><a rel="nofollow" >滬公網(wǎng)安備 31011002000058號</a><i>|</i><a rel="nofollow" ></a> 滬ICP備12020087號-3</a><i>|</i> <!-- Global site tag (gtag.js) - Google Analytics --> </div> </div> </footer> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <h1><a href="http://m.hztianpu.com/">成人无码视频,亚洲精品久久久久av无码,午夜精品久久久久久毛片,亚洲 中文字幕 日韩 无码</a></h1> <div class="friend-links"> </div> </div> </footer> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="h7ntn" class="pl_css_ganrao" style="display: none;"><em id="h7ntn"></em><em id="h7ntn"><div id="h7ntn"></div></em><rp id="h7ntn"></rp><u id="h7ntn"><ruby id="h7ntn"></ruby></u><u id="h7ntn"><mark id="h7ntn"></mark></u><mark id="h7ntn"></mark><th id="h7ntn"><b id="h7ntn"><meter id="h7ntn"><pre id="h7ntn"></pre></meter></b></th><sub id="h7ntn"></sub><style id="h7ntn"><th id="h7ntn"></th></style><nobr id="h7ntn"><b id="h7ntn"><meter id="h7ntn"><pre id="h7ntn"></pre></meter></b></nobr><var id="h7ntn"></var><u id="h7ntn"><mark id="h7ntn"></mark></u><div id="h7ntn"><strong id="h7ntn"></strong></div><sub id="h7ntn"></sub><video id="h7ntn"><u id="h7ntn"></u></video><legend id="h7ntn"><sup id="h7ntn"></sup></legend><ins id="h7ntn"><pre id="h7ntn"></pre></ins><address id="h7ntn"><div id="h7ntn"></div></address><tt id="h7ntn"><menuitem id="h7ntn"><span id="h7ntn"><legend id="h7ntn"></legend></span></menuitem></tt><dfn id="h7ntn"><big id="h7ntn"></big></dfn><optgroup id="h7ntn"></optgroup><ruby id="h7ntn"><thead id="h7ntn"><legend id="h7ntn"><label id="h7ntn"></label></legend></thead></ruby><sub id="h7ntn"></sub><listing id="h7ntn"></listing><thead id="h7ntn"></thead><sup id="h7ntn"><label id="h7ntn"><th id="h7ntn"><font id="h7ntn"></font></th></label></sup><pre id="h7ntn"><p id="h7ntn"></p></pre><acronym id="h7ntn"><label id="h7ntn"></label></acronym><var id="h7ntn"><form id="h7ntn"></form></var><u id="h7ntn"><ruby id="h7ntn"></ruby></u><font id="h7ntn"></font><meter id="h7ntn"></meter><sup id="h7ntn"><label id="h7ntn"></label></sup><th id="h7ntn"><b id="h7ntn"></b></th><ruby id="h7ntn"></ruby><th id="h7ntn"><b id="h7ntn"></b></th><span id="h7ntn"><legend id="h7ntn"></legend></span><tt id="h7ntn"><menuitem id="h7ntn"><span id="h7ntn"><legend id="h7ntn"></legend></span></menuitem></tt><ruby id="h7ntn"></ruby><u id="h7ntn"></u><rp id="h7ntn"></rp><video id="h7ntn"><tt id="h7ntn"><big id="h7ntn"><dl id="h7ntn"></dl></big></tt></video><ins id="h7ntn"><pre id="h7ntn"></pre></ins><strong id="h7ntn"></strong><thead id="h7ntn"></thead><dfn id="h7ntn"><dfn id="h7ntn"><menuitem id="h7ntn"><span id="h7ntn"></span></menuitem></dfn></dfn><pre id="h7ntn"></pre><th id="h7ntn"><b id="h7ntn"><meter id="h7ntn"><pre id="h7ntn"></pre></meter></b></th><big id="h7ntn"></big><strike id="h7ntn"><ol id="h7ntn"><optgroup id="h7ntn"><video id="h7ntn"></video></optgroup></ol></strike><strong id="h7ntn"><rp id="h7ntn"><thead id="h7ntn"><legend id="h7ntn"></legend></thead></rp></strong><b id="h7ntn"><ins id="h7ntn"><pre id="h7ntn"><strike id="h7ntn"></strike></pre></ins></b><u id="h7ntn"><mark id="h7ntn"></mark></u><u id="h7ntn"><ruby id="h7ntn"><thead id="h7ntn"><legend id="h7ntn"></legend></thead></ruby></u><thead id="h7ntn"></thead><pre id="h7ntn"><p id="h7ntn"></p></pre><form id="h7ntn"><thead id="h7ntn"><label id="h7ntn"><strong id="h7ntn"></strong></label></thead></form><font id="h7ntn"><progress id="h7ntn"></progress></font><strike id="h7ntn"><nobr id="h7ntn"><small id="h7ntn"><ins id="h7ntn"></ins></small></nobr></strike><dl id="h7ntn"><i id="h7ntn"><track id="h7ntn"><tt id="h7ntn"></tt></track></i></dl><pre id="h7ntn"><strike id="h7ntn"></strike></pre><progress id="h7ntn"><sup id="h7ntn"><strong id="h7ntn"><rp id="h7ntn"></rp></strong></sup></progress><meter id="h7ntn"></meter><i id="h7ntn"><listing id="h7ntn"></listing></i><th id="h7ntn"></th><form id="h7ntn"><output id="h7ntn"></output></form><style id="h7ntn"><nobr id="h7ntn"></nobr></style><label id="h7ntn"><strong id="h7ntn"></strong></label><b id="h7ntn"><meter id="h7ntn"></meter></b><meter id="h7ntn"><pre id="h7ntn"></pre></meter><dfn id="h7ntn"></dfn><ol id="h7ntn"><pre id="h7ntn"></pre></ol><strike id="h7ntn"><var id="h7ntn"><form id="h7ntn"><output id="h7ntn"></output></form></var></strike><track id="h7ntn"></track><style id="h7ntn"></style><style id="h7ntn"><nobr id="h7ntn"><small id="h7ntn"><ins id="h7ntn"></ins></small></nobr></style><u id="h7ntn"><ruby id="h7ntn"></ruby></u><optgroup id="h7ntn"><video id="h7ntn"><em id="h7ntn"><div id="h7ntn"></div></em></video></optgroup><sub id="h7ntn"><div id="h7ntn"><strong id="h7ntn"><optgroup id="h7ntn"></optgroup></strong></div></sub><p id="h7ntn"><nobr id="h7ntn"></nobr></p><menuitem id="h7ntn"></menuitem><rp id="h7ntn"><font id="h7ntn"><progress id="h7ntn"><acronym id="h7ntn"></acronym></progress></font></rp><pre id="h7ntn"></pre><label id="h7ntn"></label><acronym id="h7ntn"><style id="h7ntn"><th id="h7ntn"><b id="h7ntn"></b></th></style></acronym><video id="h7ntn"></video><form id="h7ntn"><output id="h7ntn"></output></form><div id="h7ntn"><ol id="h7ntn"><pre id="h7ntn"><track id="h7ntn"></track></pre></ol></div><p id="h7ntn"><var id="h7ntn"><form id="h7ntn"><ins id="h7ntn"></ins></form></var></p><strong id="h7ntn"><ruby id="h7ntn"></ruby></strong><nobr id="h7ntn"><small id="h7ntn"><meter id="h7ntn"><pre id="h7ntn"></pre></meter></small></nobr><progress id="h7ntn"><acronym id="h7ntn"><label id="h7ntn"><th id="h7ntn"></th></label></acronym></progress><em id="h7ntn"></em><font id="h7ntn"><legend id="h7ntn"></legend></font><ins id="h7ntn"><address id="h7ntn"><style id="h7ntn"><nobr id="h7ntn"></nobr></style></address></ins><legend id="h7ntn"><listing id="h7ntn"><dfn id="h7ntn"><menuitem id="h7ntn"></menuitem></dfn></listing></legend><div id="h7ntn"></div><sub id="h7ntn"></sub><ol id="h7ntn"><optgroup id="h7ntn"></optgroup></ol><form id="h7ntn"><legend id="h7ntn"><dfn id="h7ntn"><dfn id="h7ntn"></dfn></dfn></legend></form></div> < </html>