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

資訊專(zhuān)欄INFORMATION COLUMN

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

ruicbAndroid / 515人閱讀

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

1.

里的 一定要放在第一行 ,如果放在了</b>下面可能會(huì)有問(wèn)題。</p> <b>2.標(biāo)簽大集合</b> <p></p> <b>3.HTML5語(yǔ)義化標(biāo)簽</b> <p></p> <b>4.頁(yè)面內(nèi)錨點(diǎn)</b> <pre><a href="#jump">我跳!</a> ... <div class="6a22guqa" id="jump">跳到這里來(lái)!</div></pre> <p>可用于“回到頂部”功能。</p> <b>5.<b><img></b>標(biāo)簽一般要求寫(xiě)上<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.語(yǔ)義化的好處</b> <p>(1)SEO(Search Engine Optimization)搜索引擎優(yōu)化<br>(2)提高可訪(fǎng)問(wèn)性,使盲人使用屏幕閱讀器更好的訪(fǎng)問(wèn)。<br>(3)提高代碼可讀性,便于多人修改維護(hù),提高開(kāi)發(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"] { ... } //屬性值不加雙引號(hào)也可以哎 [type=text] { ... } //關(guān)于是否需要使用引號(hào):當(dāng)屬性值包含空格或者有特殊符號(hào)時(shí),必須要使用引號(hào) [class^="section"] { ... } //這樣可以選中以class屬性以"section"開(kāi)頭的元素,即上面的input 和 p </pre> <b>偽類(lèi)選擇器: 一個(gè)冒號(hào)</b> <p>12.a標(biāo)簽上的偽類(lèi)選擇器<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è)冒號(hào)</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)用于被用戶(hù)選中的內(nèi)容的樣式</p> <p>19.兄弟選擇器 <b>h1+p { ... }</b> 選中h1后面同級(jí)的<strong>緊鄰著的一個(gè)</strong>p元素<br>20.多個(gè)兄弟選擇器 <b>h1~p { ... }</b> 選中h1后面同級(jí)的所有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)先級(jí)</p> <p></p> <p>https://jsfiddle.net/DarcyAn/... 奇怪,這個(gè)咋是偽元素選擇器優(yōu)先級(jí)比偽類(lèi)的高呢?</p> <p><strong>注意偽類(lèi)與類(lèi)優(yōu)先級(jí)相同,偽元素與標(biāo)簽優(yōu)先級(jí)相同。</strong></p> <p>24.優(yōu)先級(jí)最高: <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>來(lái)達(dá)到隱藏文本的效果。 </p> <p>27.<b>white-space</b>:<br><b>nowrap</b>不換行。<br><b>pre</b> 完完整整保留了tab和空格,超出時(shí)也不會(huì)換行。<br><b>pre-wrap</b> 保留了tab和空格。當(dāng)超出時(shí)會(huì)自動(dòng)換行。</p> <p>28.<b>word-wrap: break-word;</b> 長(zhǎng)單詞超出時(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會(huì)合并<br>(2)父元素與子元素的margin會(huì)合并。(前提是父子元素之間沒(méi)有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>(用逗號(hào)隔開(kāi)即可)。</p> <b>CSS背景</b> <p>34.<b>background-attachment: scroll | local ;</b> 設(shè)置當(dāng)內(nèi)容滾動(dòng)時(shí),背景圖片的狀態(tài)。<br><b>scroll</b>: 背景圖不動(dòng)。<br><b>local</b>: 背景圖隨與內(nèi)容一起滾動(dòng)。</p> <p>35.<b>background-position: 20% 50%;</b> 設(shè)置為百分比的值要特別注意。<br>上述語(yǔ)句意思是: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.線(xiàn)性漸變 <b>linear-gradient()</b> 可以用來(lái)畫(huà)出漸變背景。</p> <pre>background: linear-gradient(to bottom, white,black);</pre> <p>向下漸變</p> <p>37.background縮寫(xiě): <b>position</b>與 <b>size</b> 之間要加 <b>/</b> 不然會(huì)沖突。</p> <p></p> <b>CSS布局</b> <p>布局簡(jiǎn)介、display(水平居中、居中導(dǎo)航)、position(輪播頭圖、固定頂欄、遮罩、三行自適應(yīng)布局)、float(兩列布局)、flex(三行兩列自適應(yīng))</p> <p>38.position定位,如果同時(shí)設(shè)置top和bottom,那么元素會(huì)被撐開(kāi)變大。</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)整,都無(wú)法跑到上面那副撲克牌上面。</p> <p></p> <p>40.<b>position: relative;</b> 參照物為元素本身,最常用的使用場(chǎng)景為絕對(duì)定位元素的參照物(=?ω?)?</p> <p>41.<b>position: absolute;</b> <strong>默認(rèn)寬度是內(nèi)容寬度</strong>,脫離文檔流。</p> <p>42.<b>position: fixed;</b> 常用場(chǎng)景:遮罩mask。</p> <p>43.<b>clear屬性</b>清除浮動(dòng)通用方案:<b>.clearfix:after{ ... }</b> 實(shí)際上是添加了一個(gè)看不見(jiàn)的點(diǎn)號(hào)。</p> <p>主要代碼:</p> <pre>.clearfix: after { content: "."; display: block; clear: both; //到這為止的前三條是用于清除浮動(dòng):設(shè)置了clear:both的塊級(jí)元素可以清除浮動(dòng) height: 0; overflow: hidden; visibility: hidden; //后面三條是為了讓點(diǎn)號(hào)不可見(jiàn) }</pre> <p>將clearfix這個(gè)class添加到浮動(dòng)元素的父元素上,就清除了因?yàn)樽釉馗?dòng)縮成一條的父元素的影響,完整代碼見(jiàn):<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> 移動(dòng)。這里的20%參照物是本元素的寬和高</p> <p>46.<b>transform: skew(30deg);</b> 傾斜。<br>y軸負(fù)方向 向 x軸正方向傾斜, x軸正方向 向 y軸負(fù)方向傾斜。<br>一張相當(dāng)直觀(guān)的圖在這里:<br></p> <p>47.<b>transform: translate(100px) rotate(45deg);</b> 先移動(dòng),再旋轉(zhuǎn)。<br>與 先旋轉(zhuǎn),再移動(dòng):<b>transform: rotate(45deg) translate(100px);</b> <strong>效果是不一樣的</strong>。<br>因?yàn)?strong>旋轉(zhuǎn)后,x軸與y軸方向已經(jīng)發(fā)生了變化</strong>。</p> <b>CSS動(dòng)畫(huà): 過(guò)渡效果<b>transition</b> + 動(dòng)畫(huà)<b>animation</b> </b> <p>48.<b>transition</b>語(yǔ)法:</p> <pre>transition: <single-transition> [,<single-transition>]; //可包含多個(gè)動(dòng)畫(huà) //每個(gè)動(dòng)畫(huà)的變化 <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>自動(dòng)運(yùn)行</strong>的。<br>(2)animation可以做<strong>多幀</strong>動(dòng)畫(huà)。</p> <p>50.<b>animation</b>語(yǔ)法:</p> <pre>animation: <single-animation>[,<single-animation>] //每個(gè)動(dòng)畫(huà)包含: <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 { //閃動(dòng)效果 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頁(yè)面制作" href="http://m.hztianpu.com/yun/tag/htmlyemianzhizuo/">html頁(yè)面制作</a> <a style="width:120px;" title="html滾動(dòng)頁(yè)面制作" href="http://m.hztianpu.com/yun/tag/htmlgundongyemianzhizuo/">html滾動(dòng)頁(yè)面制作</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)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。</p> <p>轉(zhuǎn)載請(qǐng)注明本文地址:http://m.hztianpu.com/yun/111875.html</p> </div> <ul class="pre-next-page"> <li id="6a22guqa" class="ellipsis"><a class="hpf" href="http://m.hztianpu.com/yun/111874.html">上一篇:web前端開(kāi)發(fā)前的環(huán)境搭建</a></li> <li id="6a22guqa" class="ellipsis"><a class="hpf" href="http://m.hztianpu.com/yun/111876.html">下一篇:一次阿里面試后對(duì)函數(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/50680.html"><b><em>頁(yè)面</em><em>制作</em><em>HTML</em>+<em>CSS</em><em>基礎(chǔ)</em><em>亂燉</em></b></a></h2> <p class="ellipsis2 good">摘要:標(biāo)簽大集合語(yǔ)義化標(biāo)簽頁(yè)面內(nèi)錨點(diǎn)我跳跳到這里來(lái)可用于回到頂部功能。表格中表示行,和表示列。當(dāng)超出時(shí)會(huì)自動(dòng)換行。屬性清除浮動(dòng)通用方案實(shí)際上是添加了一個(gè)看不見(jiàn)的點(diǎn)號(hào)。 1. 里的 一定要放在第一行 ,如果放在了下面可能會(huì)有問(wèn)題。 2.標(biāo)簽大集合 showImg(https://segmentfault.com/img/bVMaUw?w=1366&h=767); 3.HTML5語(yǔ)義化標(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-105.html"><img src="http://m.hztianpu.com/yun/data/avatar/000/00/01/small_000000105.jpg" alt=""><span id="6a22guqa" class="layui-hide64">ityouknow</span></a> <time datetime="">2019-08-01 16:41</time> <span><i class="fa fa-commenting"></i>評(píng)論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)秀的前端開(kāi)發(fā)工程師簡(jiǎn)歷是怎么樣的作為,有哪些一般人我都告訴他,但是他都不聽(tīng)的忠告如何面試前端工程師 更多資源請(qǐng)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>評(píng)論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">摘要:但是,從字體上來(lái)說(shuō)雪碧圖制作,使用以及相關(guān),圖文。由于采用了編譯,所以能夠保證在瀏覽器不支持標(biāo)準(zhǔn)布局的情況下,回滾到舊版本的,保證移動(dòng)設(shè)備中能呈現(xiàn)出一樣的布局效果。我不想陷入和的紛爭(zhēng),但是有一件事是確定的極大的提升了移動(dòng)端 一勞永逸的搞定 flex 布局 尋根溯源話(huà)布局 一切都始于這樣一個(gè)問(wèn)題:怎樣通過(guò) CSS 簡(jiǎn)單而優(yōu)雅的實(shí)現(xiàn)水平、垂直同時(shí)居中。記得剛開(kāi)始學(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>評(píng)論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">摘要:但是,從字體上來(lái)說(shuō)雪碧圖制作,使用以及相關(guān),圖文。由于采用了編譯,所以能夠保證在瀏覽器不支持標(biāo)準(zhǔn)布局的情況下,回滾到舊版本的,保證移動(dòng)設(shè)備中能呈現(xiàn)出一樣的布局效果。我不想陷入和的紛爭(zhēng),但是有一件事是確定的極大的提升了移動(dòng)端 一勞永逸的搞定 flex 布局 尋根溯源話(huà)布局 一切都始于這樣一個(gè)問(wèn)題:怎樣通過(guò) CSS 簡(jiǎn)單而優(yōu)雅的實(shí)現(xiàn)水平、垂直同時(shí)居中。記得剛開(kāi)始學(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>評(píng)論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">摘要:前言月份開(kāi)始出沒(méi)社區(qū),現(xiàn)在差不多月了,按照工作的說(shuō)法,就是差不多過(guò)了三個(gè)月的試用期,準(zhǔn)備轉(zhuǎn)正了一般來(lái)說(shuō),差不多到了轉(zhuǎn)正的時(shí)候,會(huì)進(jìn)行總結(jié)或者分享會(huì)議那么今天我就把看過(guò)的一些學(xué)習(xí)資源主要是博客,博文推薦分享給大家。 1.前言 6月份開(kāi)始出沒(méi)社區(qū),現(xiàn)在差不多9月了,按照工作的說(shuō)法,就是差不多過(guò)了三個(gè)月的試用期,準(zhǔn)備轉(zhuǎn)正了!一般來(lái)說(shuō),差不多到了轉(zhuǎn)正的時(shí)候,會(huì)進(jìn)行總結(jié)或者分享會(huì)議!那么今天我就...</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>評(píng)論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ā)表評(píng)論</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">登陸后可評(píng)論</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條評(píng)論</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-1533.html"><img src="http://m.hztianpu.com/yun/data/avatar/000/00/15/small_000001533.jpg" alt=""></a> <h3><a href="http://m.hztianpu.com/yun/u-1533.html" rel="nofollow">ruicbAndroid</a></h3> <h6>男<span>|</span>高級(jí)講師</h6> <div id="6a22guqa" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(1533)" id="attenttouser_1533" 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-1533.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/122620.html">cloudcone:黑五優(yōu)惠,MC機(jī)房大硬盤(pán)VPS,$14.2/年,1核/1G/35G硬盤(pán)/2T月流</a></h3> <p>閱讀 1713<span>·</span>2021-10-18 13:35</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/122024.html">十三個(gè)好用到起飛的Python技巧!</a></h3> <p>閱讀 2443<span>·</span>2021-10-09 09:44</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/121858.html">新型Android惡意軟件竊取378個(gè)銀行和錢(qián)包應(yīng)用程序的財(cái)務(wù)數(shù)據(jù)</a></h3> <p>閱讀 933<span>·</span>2021-10-08 10:05</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/121069.html">STM32學(xué)習(xí)筆記 第一章 ARM處理器</a></h3> <p>閱讀 2883<span>·</span>2021-09-26 09:47</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/120426.html">云主機(jī)手機(jī)怎么用-云主機(jī)怎么使用?</a></h3> <p>閱讀 3777<span>·</span>2021-09-22 15:22</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/111875.html">頁(yè)面制作HTML+CSS基礎(chǔ)亂燉</a></h3> <p>閱讀 516<span>·</span>2019-08-29 12:24</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/111422.html">即將立秋的《課多周刊》(第2期)</a></h3> <p>閱讀 2100<span>·</span>2019-08-29 11:06</p></li> <li><h3 class="ellipsis"><a href="http://m.hztianpu.com/yun/108584.html">js中的變量提升和函數(shù)提升</a></h3> <p>閱讀 2939<span>·</span>2019-08-26 12:23</p></li> </ul> </div> <!-- 文章詳情右側(cè)廣告--> <div id="6a22guqa" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動(dòng)</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ù)平臺(tái),堅(jiān)持中立,不涉足客戶(hù)業(yè)務(wù)領(lǐng)域。公司自主研發(fā)IaaS、PaaS、大數(shù)據(jù)流通平臺(tái)、AI服務(wù)平臺(tái)等一系列云計(jì)算產(chǎn)品,并深入了解互聯(lián)網(wǎng)、傳統(tǒng)企業(yè)在不同場(chǎng)景下的業(yè)務(wù)需求,提供公有云、混合云、私有云、專(zhuān)有云在內(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線(xiàn)上公開(kāi)課</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)品動(dòng)態(tài)</a></p> </li> <li> <h6>友情鏈接</h6> <p><a >GPU算力平臺(tái)</a></p> <p><a >UCloud私有云</a></p> <p><a >SurferCloud</a></p> <p><a >工廠(chǎng)仿真軟件</a></p> <p><a >AI繪畫(huà)</a></p> <p><a >Wavespeed AI</a></p> </li> <li> <h6>社區(qū)欄目</h6> <p><a href="http://m.hztianpu.com/yun/column/index.html">專(zhuān)欄文章</a></p> <p><a href="http://m.hztianpu.com/yun/udata/">專(zhuān)題地圖</a></p> </li> <li> <h6>常見(jiàn)問(wèn)題</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/" >新聞動(dòng)態(tài)</a></p> <p><a href="http://m.hztianpu.com/site/about/news/report/">媒體動(dòng)態(tài)</a></p> <p><a href="http://m.hztianpu.com/site/cases.html">客戶(hù)案例</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號(hào)</a><i>|</i><a rel="nofollow" ></a> 滬ICP備12020087號(hào)-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="ldvhd" class="pl_css_ganrao" style="display: none;"><i id="ldvhd"></i><label id="ldvhd"><optgroup id="ldvhd"><ruby id="ldvhd"><thead id="ldvhd"></thead></ruby></optgroup></label><mark id="ldvhd"><form id="ldvhd"><legend id="ldvhd"><dfn id="ldvhd"></dfn></legend></form></mark><ruby id="ldvhd"><thead id="ldvhd"></thead></ruby><output id="ldvhd"></output><acronym id="ldvhd"><pre id="ldvhd"><th id="ldvhd"><b id="ldvhd"></b></th></pre></acronym><legend id="ldvhd"></legend><p id="ldvhd"></p><label id="ldvhd"></label><nobr id="ldvhd"><small id="ldvhd"><meter id="ldvhd"><pre id="ldvhd"></pre></meter></small></nobr><label id="ldvhd"><pre id="ldvhd"><th id="ldvhd"><b id="ldvhd"></b></th></pre></label><p id="ldvhd"></p><strong id="ldvhd"><optgroup id="ldvhd"><ruby id="ldvhd"><thead id="ldvhd"></thead></ruby></optgroup></strong><label id="ldvhd"><video id="ldvhd"><em id="ldvhd"><meter id="ldvhd"></meter></em></video></label><ol id="ldvhd"><style id="ldvhd"></style></ol><dl id="ldvhd"></dl><legend id="ldvhd"><var id="ldvhd"></var></legend><b id="ldvhd"><progress id="ldvhd"></progress></b><strong id="ldvhd"><ruby id="ldvhd"></ruby></strong><label id="ldvhd"></label><form id="ldvhd"></form><pre id="ldvhd"></pre><listing id="ldvhd"><dfn id="ldvhd"><menuitem id="ldvhd"><span id="ldvhd"></span></menuitem></dfn></listing><strong id="ldvhd"><track id="ldvhd"><thead id="ldvhd"><big id="ldvhd"></big></thead></track></strong><video id="ldvhd"><em id="ldvhd"><div id="ldvhd"><ol id="ldvhd"></ol></div></em></video><legend id="ldvhd"><sup id="ldvhd"><label id="ldvhd"><rp id="ldvhd"></rp></label></sup></legend><menuitem id="ldvhd"><span id="ldvhd"><style id="ldvhd"><video id="ldvhd"></video></style></span></menuitem><i id="ldvhd"></i><dfn id="ldvhd"><u id="ldvhd"></u></dfn><progress id="ldvhd"><form id="ldvhd"></form></progress><dfn id="ldvhd"><u id="ldvhd"><progress id="ldvhd"><acronym id="ldvhd"></acronym></progress></u></dfn><strong id="ldvhd"><track id="ldvhd"></track></strong><menuitem id="ldvhd"><span id="ldvhd"><style id="ldvhd"><nobr id="ldvhd"></nobr></style></span></menuitem><listing id="ldvhd"><small id="ldvhd"><output id="ldvhd"><span id="ldvhd"></span></output></small></listing><strike id="ldvhd"><strong id="ldvhd"></strong></strike><legend id="ldvhd"><var id="ldvhd"></var></legend><div id="ldvhd"><pre id="ldvhd"><style id="ldvhd"><video id="ldvhd"></video></style></pre></div><ins id="ldvhd"><address id="ldvhd"></address></ins><meter id="ldvhd"><pre id="ldvhd"></pre></meter><legend id="ldvhd"><var id="ldvhd"><u id="ldvhd"><ins id="ldvhd"></ins></u></var></legend><var id="ldvhd"><b id="ldvhd"><ins id="ldvhd"><form id="ldvhd"></form></ins></b></var><strong id="ldvhd"><dfn id="ldvhd"><menuitem id="ldvhd"><span id="ldvhd"></span></menuitem></dfn></strong><ol id="ldvhd"></ol><legend id="ldvhd"><dfn id="ldvhd"></dfn></legend><sub id="ldvhd"><thead id="ldvhd"><listing id="ldvhd"><small id="ldvhd"></small></listing></thead></sub><label id="ldvhd"><strong id="ldvhd"><ruby id="ldvhd"><thead id="ldvhd"></thead></ruby></strong></label><mark id="ldvhd"><acronym id="ldvhd"><legend id="ldvhd"><dfn id="ldvhd"></dfn></legend></acronym></mark><strike id="ldvhd"><strong id="ldvhd"></strong></strike><p id="ldvhd"><ol id="ldvhd"><form id="ldvhd"><rp id="ldvhd"></rp></form></ol></p><sub id="ldvhd"><thead id="ldvhd"><strong id="ldvhd"><optgroup id="ldvhd"></optgroup></strong></thead></sub></div> < </html>