国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

【CSS練習】IT修真院--練習5-護工個人界面

Jonathan Shieber / 3491人閱讀

摘要:任務五一個最常見的移動端頁面完成的事情學習張鑫旭世界相關章節張鑫旭系列了解通配符選擇器性能優化瀏覽器渲染原理學習各屬性及效果完成任務五學習編碼規范編碼規范并按照編碼規范優化代碼完成深度思考計劃的事情找時間把前面任務的官方提供鏈接過一遍,查缺

任務五、 一個最常見的移動端頁面 完成的事情

float學習

張鑫旭《CSS世界》相關章節

張鑫旭 float系列

了解CSS通配符 & 選擇器性能優化/瀏覽器渲染原理

background學習(各屬性及效果)

完成任務五

學習CSS編碼規范CSS編碼規范, 并按照編碼規范優化代碼

完成深度思考

計劃的事情

[ ] 找時間把前面任務的官方提供鏈接過一遍,查缺補漏

[ ] 深度思考:手機分辨率和網頁px的區別(TODO:周末補學)

link1

link2

link3

遇到的問題

[ ] IE10下自我介紹一行右側無法自動自動換行(flex).

[ ] 不清楚圖片效果的實現方式,可能需要了解以下圖片用了什么處理再找編碼對策

收獲 一、任務五計劃及開發

明確效果:目標是開發一個屏幕自適應的護工個人主頁,最終效果如下:

開發步驟

截取效果圖 & 通過PSD中獲取資源圖 & 獲取header底色#5fc0cd、價格顏色#e26163

界面組成分析:

header: header用display:fixed,左側后退+居中title,可用float或absolute解決. 為了實現灰色半透明層效果需加多一層div.transparent

main: 按照上節的學習為了防止移動端fixed出Bug,main也用position:absolute然后再在main中使用一個div.content來承載內容并支持滾動.

info: 定高,圖片做背景,左邊圖片浮動并設置margin,右邊用overflow:hidden清除浮動完成定位.

skill: title欄左border,condition欄使用flex左靠,接下來都用flex包含label+span來完成

footer: footer用display:fixed, 兩個btn高度不變自適應屏幕寬度可用flex解決,為了保證伸縮3個margin不變故margin用rem寫.

效果對比:

對比優化

學習背景圖知識并嘗試實現背景圖效果

完成background學習

學習了fliter屬性,不過只是將圖像模糊化并調整了亮度, 為此將原本的文字及圖片abosulte開來, 然后原本的背景也改成用div.bg來實現模糊&亮度的修改.

順便修繕了下location,使其支持多行地點文字布局不變形.

技能高度每行都減少

底部button高度提高,并取消縱向margin

footer加入padding

二、CSS及瀏覽器部分探究

float學習 參考:張鑫旭《CSS世界》

學習總結

float本質: 本質是為了實現文字環繞效果. 因此在界面布局方面只是簡單堆疊的話會造成彈性缺失.

float特性

包裹性: "包裹" + "自適應性"

包裹:float元素的子元素如果寬度更小,則float元素寬度將表現為其子元素寬度

自適應性:float元素的子元素旁若有文字,則將自適應為子元素+文字寬度(非連續長串英文情況下,最大寬度為float元素寬度)

塊狀化并格式化上下文:若float屬性值不為none,則其display計算值為block或者table.

破壞文檔流(文字環繞圖片效果實現原理):

場景描述:場景代碼如下,img可添加float:left屬性觸發文字環繞效果,p元素為塊狀盒子,可能被分為多行,每行的文字都處于一個內聯盒子中.

啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦

讓父元素高度塌陷:讓跟隨的內容(文字)可以和浮動元素(圖片)在一個水平線上

行框盒子和浮動元素的不可重疊性:

行框盒子(每行內聯元素所在的盒子)被float限制故和浮動元素(圖片)完全不重疊,且永遠無法通過CSS改變大小.

塊狀盒子(內聯元素上級盒子)與浮動元素(圖片)完全重疊,

抗浮動

結合任務四的header布局實現實例,有三種方案可以先讓兩個標簽左右float,再對

設置text-align:center; & 設置抗浮動:

margin法: 設置

左右margin值超過標簽寬度;(此方法支持"驗收標準-擴展性要求")

clear法: 設置

的偽類:after{clear:both};

overflow法: 設置

overflow:hidden;

CSS通配符

觀點:

查詢次數多&匹配效率低,會影響性能但是影響不大

影響可維護性 & 容易造成樣式沖突

所有需要設置的元素放在一起設置

建議使用css reset文件

necolas/normalize.css

jgthms/minireset.css

選擇器性能優化 參考:網站CSS選擇器性能討論

樣式系統從最右的選擇符開始向左進行匹配規則,只要左邊還有選擇符就會繼續向左移動.

CSS選擇器效率排序(快到慢):

id選擇器(#myid)

類選擇器(.myclassname)

標簽選擇器(div,h1,p)

相鄰選擇器(h1+p)

子選擇器(ul < li)

后代選擇器(li a)

通配符選擇器(*)

屬性選擇器(a[rel=”external”])

偽類選擇器(a:hover,li:nth-child)

優化方法:

id選擇器最快,不要同時使用其他選擇器

類選擇器盡量不合標簽選擇器同時用

明確DOM結構情況下優先使用子選擇器

使用類選擇器替代后代選擇器&子選擇器

盡量用繼承避免編寫重復樣式

瀏覽器渲染原理

參考:

前端必讀:瀏覽器內部工作原理

瀏覽器的渲染:過程與原理

A 網頁加載耗時分布:

DNS查詢

TCP連接

HTTP請求及響應

服務器響應

客戶端渲染(瀏覽器渲染)

B 渲染引擎

Geoko: Firefox(新版用Quantum)

Webkit: Safari & Chrome

Trident: IE

Edge: Edge

C 渲染流程:

1) 解析html構建DOM樹: 將標簽轉化為內容樹的DOM節點

2) 構建render樹:解析外部CSS及style標志中的樣式信息,用以構建render樹. render樹由一些包含顏色和大小等屬性的矩形(??)組成,他們將被按照正確順序顯示到屏幕上.(CSS->CSSOM樹,DOM+CSSOM樹->render樹)

3) 布局render樹:確定每個節點在屏幕上的確切坐標

4) 繪制render樹:遍歷render樹,并使用UI后端層繪制每個節點

Tip:以上過程是逐步完成的,為了更好的用戶體驗渲染引擎將會盡可能早地呈現內容,也就是邊解析邊顯示.

渲染優化知識點

關鍵渲染路徑:與當前用戶操作有關的內容,即用戶打開網頁時首屏的顯示.具體到瀏覽器就是HTML&CSS&JS等資源的接收及處理后渲染出頁面.了解的目的就是為了優化,優化需要針對具體問題,比如保證首屏內容的最快顯示,可以推出PWA也就是漸進式頁面渲染,由此可以再推到資源拆分、場景策略等.

CSS & JS加載:

Tip

CSS會阻塞渲染直至CSSOM構建完畢

穿插在HTML中的script標簽將阻塞HTML解析

JS的defer&async

對inline-script無效

defer用于延遲執行引入并且不阻塞HTML解析.待整個文檔解析完畢后執行defer的JS,最后觸發DOMContentLoaded事件.

async用于異步引入JS,如果已經加載好就會開始執行,但是執行順序不確定.

優化方法:

優先引入CSS,JS盡量少影響DOM的構建

實際工程中經常將JS放到文檔底部前(非框架文件)

三、background學習

定義:用于定義HTML元素的背景.

屬性:

background-color: 背景色

設定方式:

十六進制: #ff0000

RGB: rgb(255, 0, 0)

顏色名稱: red

RGBA(???)

透明:transparent

inherit:繼承父元素背景色

background-image: 背景圖像(默認平鋪重復)

設定方式: url("[path]")

background-repeat:

水平平鋪:repeat-x

垂直平鋪: repeat-y

不平鋪:no-repeat

background-attachment:是否隨頁面滾動

scroll: 跟隨頁面滾動

fixed:跟隨進度條位置

inherit: 繼承自父元素

background-position: 設置背景圖像的起始位置(Firefox和Opera需要先設置為fixed才能正常工作)

設定方式:

top|center|bottom(垂直) left|center|right(水平)

x%(水平) y%(垂直)

xpos(水平) ypos(垂直)

background-origin: 相對位置

值:padding-box|border-box|content-box

background-size: 背景圖片大小

值: length(寬度,高度)|percentage(寬度,高度)|cover(保持縱橫比并縮放成完全覆蓋背景定位區域的最大大小)|contain(保持縱橫比并縮放成合適背景定位區域的最大大小,即只滿足短的方向的等比例縮放)

三、深度思考

1.css可以繪制哪些常見的特殊形狀?

參考:

奇妙的 CSS shapes(CSS圖形)

The Shapes of CSS

梯形、三角形、六邊形、圓形、心型、五角星...

SharpsDemo演示

2.如何理解vertical-align與line-height?

參考:

深入理解line-height與vertical-align

CSS深入理解vertical-align和line-height的基友關系

line-height: 行高.只影響inline元素及內容.

可選值:|||normal|inherit

默認值:normal(通常是font-size的1.2倍)

內容區:行內文本,font-size決定了其高度;

行內框:等于行間距(上半)+內容區+行間距(下半),line-height決定了其高度;當font-size>line-height時行內框小于內容區;

行框:行內的最高行內框頂端到最低行內款底端的距離,且各行框頂端挨著上一行框的底端;

框屬性:

padding、border、margin的top&bottom都不影響行高(行框高度), 其left&right都會應用到元素的開始結尾;

行內元素的邊框邊界由font-size控制而非line-height;

行內替換元素:根據元素的標簽屬性來決定其顯示的具體內容的元素,如 & . 其位于基線(vertical-align:bashline)上, 替換元素的基線是正常流中最后一個行框的基線,除非元素內容為空或者本身的overflow屬性值不是visible,這種情況下基線是marigin底邊緣.

vertical-align

可選值:

關鍵字值: baseline|sub|super|text-top|text-bottom|middle|top|bottom

長度值:??em|??px

百分比值:?% (vertical-align的百分比相對于line-height進行計算)

全局值:inherit|initial|unset

默認值:baseline

關系

對于內聯元素各種想得通或者想不通的行為表現,基本上都可以用vertical-align和line-height來解釋,以及進行行為矯正

vertical-align的百分比相對于line-height進行計算

學習演示地址

3.請解釋一下CSS3的Flexbox(彈性盒布局模型)以及適用場景?

Flex布局用于簡潔、完整、響應式地實現各種頁面布局,給盒模型提供最大的靈活性. 采用Flex布局的元素稱為Flex容器(flex container), 其所有子元素自動成為容器成員即Flex項目(flex item). 容器默認存在兩根軸,水平的主軸(main axis)和交叉軸(cross axis),Flex項目默認沿主軸排列.

適用場景:

網格布局:設置flex

百分比布局:先設置flex:1, 再設置flex: 0 0 %

圣杯布局: 該填滿的用flex:1

輸入框布局:一側定長,其他flex:1填滿

懸掛式布局:一側定長,其他flex:1填滿

固定底欄:方向column,定高

流式布局: 參考任務一

4.title與h1、b與strong、i與em、img的alt與title、src與href有什么區別 參考:Web品質

& <h1>: <title>用于描述網頁內容且整個文檔中只出現一次,在搜索引擎列表、窗口標題欄、用戶書簽中可見,應盡量短且具有描述性; <h1>用于描述網頁中最頂層的標題,符合語義化;</p> <p><b> & <strong>: <b>為無意義的加粗,現在的Web標準不建議直接元素設計具體表現形式,故建議少用; <strong>表更強的強調,可以用CSS替換其加粗樣式,比較符合Web標準;</p> <p><i> & <em>: <i>為無意義的斜體,現在的Web標準不建議直接元素設計具體表現形式,故建議少用; <em>表示一般強調,可以用CSS替換其斜體樣式,比較符合Web標準;</p> <p> <p><img>的alt & title屬性、src & href屬性:</p> <p>alt:無法顯示圖片時起到文本替代的作用, 瀏覽器在特殊瀏覽器上有輔助作用;</p> <p>title: 鼠標劃過時的文本提示;</p> <p>src:資源對應路徑,將資源加載到文檔中;</p> <p>href:指向的鏈接,不加載資源;</p> </p> <p>5.如何使用IconFont? 參考:IconFont使用</p> <p> <p>unicode引用:</p> <p>使用:拷貝字體到項目然后加入font-face, css定義iconfont樣式, 選擇圖標及字體編碼應用于頁面;</p> <p>特點:兼容性好(IE6+);支持按字體方式動態調整圖標大小顏色;不支持多色;</p> </p> <p> <p>font-class引用:</p> <p>使用:拷貝fontclass代碼,直接選圖標并在應用上應用類名;</p> <p>解決問題:解決unicode書寫不直觀 & 語意不明確的問題;</p> <p>特點:兼容性良好(IE8+);語意明確;改圖標只需要修改class的unicode引用;不支持多色;</p> </p> <p> <p>symbol引用:</p> <p>使用:拷貝symbol代碼,引入CSS代碼,直接選圖標并在應用上應用類名;</p> <p>特點:支持多色圖標;可以像字體用font-size & color調整樣式;兼容性較差(IE9+);svg渲染性能一般,遜于png.</p> <p>解決問題:單色限制問題.</p> </p> <p>6.HTML中dl、ul、ol用哪個比較好?</p> <p>dl: 定義列表,包含自定義列表項<dt>和自定義列表項的定義<dd>.適用于展示事務列表并需要對其進行解釋說明的場景</p> <p>ul: 無序列表,默認用小圓點進行標記.適用于無序列表清單.但是由于自帶的效果在不同瀏覽器效果不同,故一般會去掉標記.</p> <p>ol: 有序列表,默認用數字進行標記.適用于有序列表清單.</p> <b>效果</b> <p>Github</p> <p>線上展示</p> <b>系列文章</b> <p>【CSS練習】IT修真院--練習1-九宮格</p> <p>【CSS練習】IT修真院--練習2-開發工具</p> <p>【CSS練習】IT修真院--練習3-簡單界面</p> <p>【CSS練習】IT修真院--練習4-移動端界面</p> <p>【CSS練習】IT修真院--練習5-護工個人界面</p> <p>【CSS練習】IT修真院--練習6-護工列表界面</p> </div> <div id="gossio0" class="mt-64 tags-seach" > <div id="au00mce" class="tags-info"> <a style="width:120px;" title="GPU云服務器" href="http://specialneedsforspecialkids.com/site/product/gpu.html">GPU云服務器</a> <a style="width:120px;" title="云服務器" href="http://specialneedsforspecialkids.com/site/active/kuaijiesale.html?ytag=seo">云服務器</a> <a style="width:120px;" title="css練習" href="http://specialneedsforspecialkids.com/yun/tag/csslianxi/">css練習</a> <a style="width:120px;" title="html和css練習" href="http://specialneedsforspecialkids.com/yun/tag/htmlhecsslianxi/">html和css練習</a> <a style="width:120px;" title="練習" href="http://specialneedsforspecialkids.com/yun/tag/lianxi/">練習</a> <a style="width:120px;" title="練習代碼" href="http://specialneedsforspecialkids.com/yun/tag/lianxidaima/">練習代碼</a> </div> </div> <div id="mw2yocg" class="entry-copyright mb-30"> <p class="mb-15"> 文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。</p> <p>轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/113487.html</p> </div> <ul class="pre-next-page"> <li id="yu2eyww" class="ellipsis"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/113486.html">上一篇:emmet快速縮寫展開的基本寫法與心得</a></li> <li id="owoims2" class="ellipsis"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/113488.html">下一篇:我的前端面試日記(一)</a></li> </ul> </div> <div id="2kqk2cg" class="about_topicone-mid"> <h3 class="top-com-title mb-0"><span data-id="0">相關文章</span></h3> <ul class="com_white-left-mid atricle-list-box"> <li> <div id="oyoe20s" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/116726.html"><b>【<em>CSS</em><em>練習</em>】<em>IT</em><em>修<em>真院</em></em>--<em>練習</em>6-<em>護工</em>列表<em>界面</em></b></a></h2> <p class="ellipsis2 good">摘要:任務六護工列表頁完成的事情規劃任務六完成基本界面編寫計劃的事情限制最小寬度使用雪碧圖替換當前的多張圖片引入完成模擬下拉框編寫屏幕過窄時,列表項左邊文字被截斷出現省略號復習之前的代碼規范,優化代碼查看驗收標準查看深度思考遇到的問題收獲頁面原生 任務六、 護工列表頁 完成的事情 1.規劃任務六2.完成基本界面編寫 計劃的事情 [x] 限制最小寬度 [x] 使用雪碧圖替換當前的多張圖片引入...</p> <div id="eygwges" class="com_white-left-info"> <div id="i2uiocc" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-143.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/01/small_000000143.jpg" alt=""><span id="ye0uocc" class="layui-hide64">Sleepy</span></a> <time datetime="">2019-08-30 15:53</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="sck0oaq" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/113428.html"><b>【<em>CSS</em><em>練習</em>】<em>IT</em><em>修<em>真院</em></em>--<em>練習</em>3-簡單<em>界面</em></b></a></h2> <p class="ellipsis2 good">摘要:任務三一個最簡單的移動端頁面今天完成的事情運用布局知識跟隨設計圖進行布局,完成簡單并繼續學習優化讓布局更好適應屏幕變化使用了盒模型及百分比了解區別在中應用圖片處理學習明天計劃的事情深度思考手機分辨率和網頁的區別周末補學任務四計劃及簡單編寫遇 任務三、 一個最簡單的移動端頁面 今天完成的事情 運用布局知識跟隨設計圖進行布局,完成簡單Demo并繼續學習優化. 讓布局更好適應屏幕變化(使用...</p> <div id="ik0ucec" class="com_white-left-info"> <div id="s2oaaq0" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-326.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/03/small_000000326.jpg" alt=""><span id="22weuw0" class="layui-hide64">MrZONT</span></a> <time datetime="">2019-08-29 15:36</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="wy2u2iy" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/113399.html"><b>【<em>CSS</em><em>練習</em>】<em>IT</em><em>修<em>真院</em></em>--<em>練習</em>2-開發工具</b></a></h2> <p class="ellipsis2 good">摘要:任務二認識開發工具今天完成的事情編輯器對比版本管理工具學習基本操作代碼托管平臺對比服務器使用學習明天計劃的事情分析任務三完成規劃及部分開發遇到的問題暫無收獲編輯器對比參考三者比較,各有哪些優勢和弱勢一款成熟的,對網站開發者友好,插件齊全功能 任務二. 認識開發工具 今天完成的事情 IDE & 編輯器對比 版本管理工具學習 Git基本操作 代碼托管平臺對比 服務器使用學習 明天計劃的...</p> <div id="wgas2qo" class="com_white-left-info"> <div id="2sgwkuy" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-1067.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/10/small_000001067.jpg" alt=""><span id="iucg0gu" class="layui-hide64">_ang</span></a> <time datetime="">2019-08-29 15:33</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="eqmsyo0" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/113412.html"><b>【<em>CSS</em><em>練習</em>】<em>IT</em><em>修<em>真院</em></em>--<em>練習</em>1-九宮格</b></a></h2> <p class="ellipsis2 good">摘要:用于顯示日志信息及輸入一些命令請求監聽。可獲得請求列表,點開某一項將看到數據頭部數據。包含本次請求的請求方法狀態碼請求服務器的地址其他一些設置響應頭部包含用戶代理,幫服務器識別設備用預覽。 九宮格——用html+css制作一個網頁 一. 目標效果: showImg(https://segmentfault.com/img/bVbbxBA?w=872&h=644); 二. 效果描述 圓角...</p> <div id="uwyeim0" class="com_white-left-info"> <div id="iwcioco" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-254.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/02/small_000000254.jpg" alt=""><span id="ega2gi0" class="layui-hide64">Tecode</span></a> <time datetime="">2019-08-29 15:34</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="cgkqce2" class="atricle-list-right"> <h2 class="ellipsis2"><a class="hpf" href="http://specialneedsforspecialkids.com/yun/113461.html"><b>【<em>CSS</em><em>練習</em>】<em>IT</em><em>修<em>真院</em></em>--<em>練習</em>4-移動端<em>界面</em></b></a></h2> <p class="ellipsis2 good">摘要:任務四一個最常見的移動端頁面完成的事情完成簡單布局,然后填充界面與效果圖對比優化完成驗收要求擴展性頂欄固定進行樣式兼容性研究完成任務四深度思考跟隨深度思考師兄建議進行修改輸入欄左側換用輸入限制電話位,密碼位根據結構的語義化修改嘗試下再加一 任務四、 一個最常見的移動端頁面 完成的事情 完成簡單布局,然后填充界面 與效果圖對比優化 完成驗收要求:header擴展性 & 頂欄固定 進行p...</p> <div id="aagcu2o" class="com_white-left-info"> <div id="ogegm0a" class="com_white-left-infol"> <a href="http://specialneedsforspecialkids.com/yun/u-375.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/03/small_000000375.jpg" alt=""><span id="gwoks22" class="layui-hide64">kun_jian</span></a> <time datetime="">2019-08-29 15:39</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="mmqwwka" class="topicone-box-wangeditor"> <h3 class="top-com-title mb-64"><span>發表評論</span></h3> <div id="2wmeiii" class="xcp-publish-main flex_box_zd"> <div id="amsyomc" class="unlogin-pinglun-box"> <a href="javascript:login()" class="grad">登陸后可評論</a> </div> </div> </div> <div id="oa2ekiy" class="site-box-content"> <div id="iicuui0" class="site-content-title"> <h3 class="top-com-title mb-64"><span>0條評論</span></h3> </div> <div id="mu2s00e" class="pages"></ul></div> </div> </div> <div id="k00csuu" class="layui-col-md4 layui-col-lg3 com_white-right site-wrap-right"> <div id="00gmkea" class=""> <div id="ko0kkiw" class="com_layuiright-box user-msgbox"> <a href="http://specialneedsforspecialkids.com/yun/u-921.html"><img src="http://specialneedsforspecialkids.com/yun/data/avatar/000/00/09/small_000000921.jpg" alt=""></a> <h3><a href="http://specialneedsforspecialkids.com/yun/u-921.html" rel="nofollow">Jonathan Shieber</a></h3> <h6>男<span>|</span>高級講師</h6> <div id="2wqw0mo" class="flex_box_zd user-msgbox-atten"> <a href="javascript:attentto_user(921)" id="attenttouser_921" class="grad follow-btn notfollow attention">我要關注</a> <a href="javascript:login()" title="發私信" >我要私信</a> </div> <div id="kscwosi" class="user-msgbox-list flex_box_zd"> <h3 class="hpf">TA的文章</h3> <a href="http://specialneedsforspecialkids.com/yun/ut-921.html" class="box_hxjz">閱讀更多</a> </div> <ul class="user-msgbox-ul"> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/118029.html">LOCVPS:香港云地/美國洛杉磯輕量套餐上線,KVM月付29.6元起</a></h3> <p>閱讀 1508<span>·</span>2021-08-09 13:47</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/117344.html">CSS3常見技巧(二):如何用CSS3來實現三角形?</a></h3> <p>閱讀 2767<span>·</span>2019-08-30 15:55</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/113487.html">【CSS練習】IT修真院--練習5-護工個人界面</a></h3> <p>閱讀 3492<span>·</span>2019-08-29 15:42</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/112686.html">我不知道你知不知道我知道的偽元素小技巧</a></h3> <p>閱讀 1115<span>·</span>2019-08-29 13:45</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/111977.html">CSS技巧 - 收藏集 - 掘金</a></h3> <p>閱讀 3009<span>·</span>2019-08-29 12:33</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/107939.html">講清楚之 javascript 對象繼承</a></h3> <p>閱讀 1742<span>·</span>2019-08-26 11:58</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/105971.html">來,告訴你Node.js究竟是什么?</a></h3> <p>閱讀 983<span>·</span>2019-08-26 10:19</p></li> <li><h3 class="ellipsis"><a href="http://specialneedsforspecialkids.com/yun/104503.html">React組件設計模式-組合組件</a></h3> <p>閱讀 2410<span>·</span>2019-08-23 18:00</p></li> </ul> </div> <!-- 文章詳情右側廣告--> <div id="u2yq2km" class="com_layuiright-box"> <h6 class="top-com-title"><span>最新活動</span></h6> <div id="2kekoaq" class="com_adbox"> <div id="qc0y2oq" class="layui-carousel" id="right-item"> <div carousel-item> <div> <a href="http://specialneedsforspecialkids.com/site/active/kuaijiesale.html?ytag=seo" rel="nofollow"> <img src="http://specialneedsforspecialkids.com/yun/data/attach/240625/2rTjEHmi.png" alt="云服務器"> </a> </div> <div> <a href="http://specialneedsforspecialkids.com/site/product/gpu.html" rel="nofollow"> <img src="http://specialneedsforspecialkids.com/yun/data/attach/240807/7NjZjdrd.png" alt="GPU云服務器"> </a> </div> </div> </div> </div> <!-- banner結束 --> <div id="2gygmcg" class="adhtml"> </div> <script> $(function(){ $.ajax({ type: "GET", url:"http://specialneedsforspecialkids.com/yun/ad/getad/1.html", cache: false, success: function(text){ $(".adhtml").html(text); } }); }) </script> </div> </div> </div> </div> </div> </section> <!-- wap拉出按鈕 --> <div id="ia2ygs0" class="site-tree-mobile layui-hide"> <i class="layui-icon layui-icon-spread-left"></i> </div> <!-- wap遮罩層 --> <div id="u00qo0u" class="site-mobile-shade"></div> <!--付費閱讀 --> <div class="sa2yqgk" id="payread"> <div id="wksioe2" class="layui-form-item">閱讀需要支付1元查看</div> <div id="i2qg2iy" class="layui-form-item"><button class="btn-right">支付并查看</button></div> </div> <script> var prei=0; $(".site-seo-depict pre").each(function(){ var html=$(this).html().replace("<code>","").replace("</code>","").replace('<code class="javascript hljs" codemark="1">',''); $(this).attr('data-clipboard-text',html).attr("id","pre"+prei); $(this).html("").append("<code>"+html+"</code>"); prei++; }) $(".site-seo-depict img").each(function(){ if($(this).attr("src").indexOf('data:image/svg+xml')!= -1){ $(this).remove(); } }) $("LINK[href*='style-49037e4d27.css']").remove(); $("LINK[href*='markdown_views-d7a94ec6ab.css']").remove(); layui.use(['jquery', 'layer','code'], function(){ $("pre").attr("class","layui-code"); $("pre").attr("lay-title",""); $("pre").attr("lay-skin",""); layui.code(); $(".layui-code-h3 a").attr("class","copycode").html("復制代碼 ").attr("onclick","copycode(this)"); }); function copycode(target){ var id=$(target).parent().parent().attr("id"); var clipboard = new ClipboardJS("#"+id); clipboard.on('success', function(e) { e.clearSelection(); alert("復制成功") }); clipboard.on('error', function(e) { alert("復制失敗") }); } //$(".site-seo-depict").html($(".site-seo-depict").html().slice(0, -5)); </script> <link rel="stylesheet" type="text/css" href="http://specialneedsforspecialkids.com/yun/static/js/neweditor/code/styles/tomorrow-night-eighties.css"> <script src="http://specialneedsforspecialkids.com/yun/static/js/neweditor/code/highlight.pack.js" type="text/javascript"></script> <script src="http://specialneedsforspecialkids.com/yun/static/js/clipboard.js"></script> <script>hljs.initHighlightingOnLoad();</script> <script> function setcode(){ var _html=''; document.querySelectorAll('pre code').forEach((block) => { var _tmptext=$.trim($(block).text()); if(_tmptext!=''){ _html=_html+_tmptext; console.log(_html); } }); } </script> <script> function payread(){ layer.open({ type: 1, title:"付費閱讀", shadeClose: true, content: $('#payread') }); } // 舉報 function jupao_tip(){ layer.open({ type: 1, title:false, shadeClose: true, content: $('#jubao') }); } $(".getcommentlist").click(function(){ var _id=$(this).attr("dataid"); var _tid=$(this).attr("datatid"); $("#articlecommentlist"+_id).toggleClass("hide"); var flag=$("#articlecommentlist"+_id).attr("dataflag"); if(flag==1){ flag=0; }else{ flag=1; //加載評論 loadarticlecommentlist(_id,_tid); } $("#articlecommentlist"+_id).attr("dataflag",flag); }) $(".add-comment-btn").click(function(){ var _id=$(this).attr("dataid"); $(".formcomment"+_id).toggleClass("hide"); }) $(".btn-sendartcomment").click(function(){ var _aid=$(this).attr("dataid"); var _tid=$(this).attr("datatid"); var _content=$.trim($(".commenttext"+_aid).val()); if(_content==''){ alert("評論內容不能為空"); return false; } var touid=$("#btnsendcomment"+_aid).attr("touid"); if(touid==null){ touid=0; } addarticlecomment(_tid,_aid,_content,touid); }) $(".button_agree").click(function(){ var supportobj = $(this); var tid = $(this).attr("id"); $.ajax({ type: "GET", url:"http://specialneedsforspecialkids.com/yun/index.php?topic/ajaxhassupport/" + tid, cache: false, success: function(hassupport){ if (hassupport != '1'){ $.ajax({ type: "GET", cache:false, url: "http://specialneedsforspecialkids.com/yun/index.php?topic/ajaxaddsupport/" + tid, success: function(comments) { supportobj.find("span").html(comments+"人贊"); } }); }else{ alert("您已經贊過"); } } }); }); function attenquestion(_tid,_rs){ $.ajax({ //提交數據的類型 POST GET type:"POST", //提交的網址 url:"http://specialneedsforspecialkids.com/yun/favorite/topicadd.html", //提交的數據 data:{tid:_tid,rs:_rs}, //返回數據的格式 datatype: "json",//"xml", "html", "script", "json", "jsonp", "text". //在請求之前調用的函數 beforeSend:function(){}, //成功返回之后調用的函數 success:function(data){ var data=eval("("+data+")"); console.log(data) if(data.code==2000){ layer.msg(data.msg,function(){ if(data.rs==1){ //取消收藏 $(".layui-layer-tips").attr("data-tips","收藏文章"); $(".layui-layer-tips").html('<i class="fa fa-heart-o"></i>'); } if(data.rs==0){ //收藏成功 $(".layui-layer-tips").attr("data-tips","已收藏文章"); $(".layui-layer-tips").html('<i class="fa fa-heart"></i>') } }) }else{ layer.msg(data.msg) } } , //調用執行后調用的函數 complete: function(XMLHttpRequest, textStatus){ postadopt=true; }, //調用出錯執行的函數 error: function(){ //請求出錯處理 postadopt=false; } }); } </script> <footer> <div id="w0mgi0m" class="layui-container"> <div id="qqw02mw" class="flex_box_zd"> <div id="qeiuamy" class="left-footer"> <h6><a href="http://specialneedsforspecialkids.com/"><img src="http://specialneedsforspecialkids.com/yun/static/theme/ukd//images/logo.png" alt="UCloud (優刻得科技股份有限公司)"></a></h6> <p>UCloud (優刻得科技股份有限公司)是中立、安全的云計算服務平臺,堅持中立,不涉足客戶業務領域。公司自主研發IaaS、PaaS、大數據流通平臺、AI服務平臺等一系列云計算產品,并深入了解互聯網、傳統企業在不同場景下的業務需求,提供公有云、混合云、私有云、專有云在內的綜合性行業解決方案。</p> </div> <div id="ec2kgs0" class="right-footer layui-hidemd"> <ul class="flex_box_zd"> <li> <h6>UCloud與云服務</h6> <p><a href="http://specialneedsforspecialkids.com/site/about/intro/">公司介紹</a></p> <p><a >加入我們</a></p> <p><a href="http://specialneedsforspecialkids.com/site/ucan/onlineclass/">UCan線上公開課</a></p> <p><a href="http://specialneedsforspecialkids.com/site/solutions.html" >行業解決方案</a></p> <p><a href="http://specialneedsforspecialkids.com/site/pro-notice/">產品動態</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 >Pinex</a></p> <p><a >AI繪畫</a></p> </li> <li> <h6>社區欄目</h6> <p><a href="http://specialneedsforspecialkids.com/yun/column/index.html">專欄文章</a></p> <p><a href="http://specialneedsforspecialkids.com/yun/udata/">專題地圖</a></p> </li> <li> <h6>常見問題</h6> <p><a href="http://specialneedsforspecialkids.com/site/ucsafe/notice.html" >安全中心</a></p> <p><a href="http://specialneedsforspecialkids.com/site/about/news/recent/" >新聞動態</a></p> <p><a href="http://specialneedsforspecialkids.com/site/about/news/report/">媒體動態</a></p> <p><a href="http://specialneedsforspecialkids.com/site/cases.html">客戶案例</a></p> <p><a href="http://specialneedsforspecialkids.com/site/notice/">公告</a></p> </li> <li> <span><img src="https://static.ucloud.cn/7a4b6983f4b94bcb97380adc5d073865.png" alt="優刻得"></span> <p>掃掃了解更多</p></div> </div> <div id="w2km0ym" class="copyright">Copyright ? 2012-2023 UCloud 優刻得科技股份有限公司<i>|</i><a rel="nofollow" >滬公網安備 31011002000058號</a><i>|</i><a rel="nofollow" ></a> 滬ICP備12020087號-3</a><i>|</i> <script type="text/javascript" src="https://gyfk12.kuaishang.cn/bs/ks.j?cI=197688&fI=125915" charset="utf-8"></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?290c2650b305fc9fff0dbdcafe48b59d"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-DZSMXQ3P9N"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-DZSMXQ3P9N'); </script> <script> (function(){ var el = document.createElement("script"); el.src = "https://lf1-cdn-tos.bytegoofy.com/goofy/ttzz/push.js?99f50ea166557aed914eb4a66a7a70a4709cbb98a54ecb576877d99556fb4bfc3d72cd14f8a76432df3935ab77ec54f830517b3cb210f7fd334f50ccb772134a"; el.id = "ttzz"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(el, s); })(window) </script></div> </div> </footer> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://specialneedsforspecialkids.com/" title="国产xxxx99真实实拍">国产xxxx99真实实拍</a> <div class="friend-links"> <a href="http://belistarlp.com/">国产黄色在线</a> </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="j5jbh" class="pl_css_ganrao" style="display: none;"><div id="j5jbh"><b id="j5jbh"><label id="j5jbh"><div id="j5jbh"></div></label></b></div><p id="j5jbh"></p><acronym id="j5jbh"></acronym><progress id="j5jbh"></progress><acronym id="j5jbh"><div id="j5jbh"><thead id="j5jbh"><listing id="j5jbh"></listing></thead></div></acronym><sup id="j5jbh"></sup><ins id="j5jbh"><p id="j5jbh"></p></ins><legend id="j5jbh"><thead id="j5jbh"></thead></legend><label id="j5jbh"><strong id="j5jbh"></strong></label><mark id="j5jbh"><dfn id="j5jbh"><ruby id="j5jbh"><thead id="j5jbh"></thead></ruby></dfn></mark><label id="j5jbh"></label><thead id="j5jbh"><rp id="j5jbh"></rp></thead><strong id="j5jbh"><sup id="j5jbh"></sup></strong><form id="j5jbh"><ruby id="j5jbh"><thead id="j5jbh"><ins id="j5jbh"></ins></thead></ruby></form><rp id="j5jbh"><dfn id="j5jbh"></dfn></rp><label id="j5jbh"></label><listing id="j5jbh"><strong id="j5jbh"><sup id="j5jbh"><progress id="j5jbh"></progress></sup></strong></listing><output id="j5jbh"></output><var id="j5jbh"><style id="j5jbh"><dl id="j5jbh"><legend id="j5jbh"></legend></dl></style></var><legend id="j5jbh"><tt id="j5jbh"><ins id="j5jbh"><font id="j5jbh"></font></ins></tt></legend><legend id="j5jbh"></legend><big id="j5jbh"><font id="j5jbh"></font></big><tt id="j5jbh"></tt><output id="j5jbh"><b id="j5jbh"></b></output><progress id="j5jbh"><em id="j5jbh"></em></progress><strong id="j5jbh"><menuitem id="j5jbh"></menuitem></strong><pre id="j5jbh"><mark id="j5jbh"><optgroup id="j5jbh"><span id="j5jbh"></span></optgroup></mark></pre><ol id="j5jbh"><progress id="j5jbh"><dfn id="j5jbh"><dfn id="j5jbh"></dfn></dfn></progress></ol><nobr id="j5jbh"></nobr><dl id="j5jbh"><meter id="j5jbh"><thead id="j5jbh"><video id="j5jbh"></video></thead></meter></dl><form id="j5jbh"><track id="j5jbh"></track></form><form id="j5jbh"><label id="j5jbh"></label></form><pre id="j5jbh"></pre><acronym id="j5jbh"><ruby id="j5jbh"><b id="j5jbh"><strong id="j5jbh"></strong></b></ruby></acronym><th id="j5jbh"></th><dfn id="j5jbh"></dfn><label id="j5jbh"></label><strike id="j5jbh"><acronym id="j5jbh"><meter id="j5jbh"><thead id="j5jbh"></thead></meter></acronym></strike><u id="j5jbh"></u><progress id="j5jbh"><dfn id="j5jbh"><dfn id="j5jbh"><mark id="j5jbh"></mark></dfn></dfn></progress><dfn id="j5jbh"><big id="j5jbh"></big></dfn><pre id="j5jbh"><sub id="j5jbh"><video id="j5jbh"><legend id="j5jbh"></legend></video></sub></pre><dl id="j5jbh"></dl><style id="j5jbh"></style><u id="j5jbh"><label id="j5jbh"></label></u><em id="j5jbh"><menuitem id="j5jbh"><sub id="j5jbh"><mark id="j5jbh"></mark></sub></menuitem></em><small id="j5jbh"></small><thead id="j5jbh"><ins id="j5jbh"><small id="j5jbh"><ruby id="j5jbh"></ruby></small></ins></thead><nobr id="j5jbh"><legend id="j5jbh"><tt id="j5jbh"><listing id="j5jbh"></listing></tt></legend></nobr><legend id="j5jbh"><tt id="j5jbh"><dl id="j5jbh"><p id="j5jbh"></p></dl></tt></legend><strong id="j5jbh"></strong><ins id="j5jbh"><small id="j5jbh"><ruby id="j5jbh"><form id="j5jbh"></form></ruby></small></ins><i id="j5jbh"><strong id="j5jbh"></strong></i><listing id="j5jbh"><legend id="j5jbh"></legend></listing><label id="j5jbh"><nobr id="j5jbh"></nobr></label><label id="j5jbh"><nobr id="j5jbh"><pre id="j5jbh"><sub id="j5jbh"></sub></pre></nobr></label><thead id="j5jbh"><rp id="j5jbh"><dfn id="j5jbh"><track id="j5jbh"></track></dfn></rp></thead><output id="j5jbh"><thead id="j5jbh"></thead></output><dfn id="j5jbh"><u id="j5jbh"></u></dfn><dl id="j5jbh"><legend id="j5jbh"></legend></dl><pre id="j5jbh"><strike id="j5jbh"></strike></pre><th id="j5jbh"><u id="j5jbh"></u></th><track id="j5jbh"><u id="j5jbh"><video id="j5jbh"><small id="j5jbh"></small></video></u></track><rp id="j5jbh"><em id="j5jbh"></em></rp><pre id="j5jbh"><ol id="j5jbh"><progress id="j5jbh"><small id="j5jbh"></small></progress></ol></pre><listing id="j5jbh"></listing><acronym id="j5jbh"><track id="j5jbh"><i id="j5jbh"><address id="j5jbh"></address></i></track></acronym><address id="j5jbh"><div id="j5jbh"><span id="j5jbh"><big id="j5jbh"></big></span></div></address><ol id="j5jbh"><i id="j5jbh"><strong id="j5jbh"><strong id="j5jbh"></strong></strong></i></ol><p id="j5jbh"><ol id="j5jbh"><thead id="j5jbh"><form id="j5jbh"></form></thead></ol></p><b id="j5jbh"></b><p id="j5jbh"><span id="j5jbh"><nobr id="j5jbh"><legend id="j5jbh"></legend></nobr></span></p><pre id="j5jbh"><var id="j5jbh"></var></pre><dfn id="j5jbh"><strike id="j5jbh"><font id="j5jbh"><div id="j5jbh"></div></font></strike></dfn><thead id="j5jbh"><em id="j5jbh"><menuitem id="j5jbh"><sub id="j5jbh"></sub></menuitem></em></thead><div id="j5jbh"></div><pre id="j5jbh"><big id="j5jbh"><dl id="j5jbh"><legend id="j5jbh"></legend></dl></big></pre><label id="j5jbh"><listing id="j5jbh"><p id="j5jbh"><sub id="j5jbh"></sub></p></listing></label><track id="j5jbh"><b id="j5jbh"></b></track><menuitem id="j5jbh"><sub id="j5jbh"><thead id="j5jbh"><form id="j5jbh"></form></thead></sub></menuitem><small id="j5jbh"><output id="j5jbh"><b id="j5jbh"><ins id="j5jbh"></ins></b></output></small><label id="j5jbh"></label><listing id="j5jbh"><optgroup id="j5jbh"></optgroup></listing><sup id="j5jbh"><thead id="j5jbh"></thead></sup><style id="j5jbh"></style><ins id="j5jbh"></ins><tt id="j5jbh"><progress id="j5jbh"><font id="j5jbh"><output id="j5jbh"></output></font></progress></tt><sub id="j5jbh"></sub><video id="j5jbh"><font id="j5jbh"><meter id="j5jbh"><pre id="j5jbh"></pre></meter></font></video><i id="j5jbh"><label id="j5jbh"></label></i><pre id="j5jbh"><var id="j5jbh"><style id="j5jbh"><listing id="j5jbh"></listing></style></var></pre><address id="j5jbh"><p id="j5jbh"><sub id="j5jbh"><progress id="j5jbh"></progress></sub></p></address><u id="j5jbh"><form id="j5jbh"></form></u><strong id="j5jbh"><legend id="j5jbh"></legend></strong><em id="j5jbh"></em><output id="j5jbh"></output><label id="j5jbh"><legend id="j5jbh"></legend></label><u id="j5jbh"></u><var id="j5jbh"></var><legend id="j5jbh"><var id="j5jbh"><form id="j5jbh"><strong id="j5jbh"></strong></form></var></legend><acronym id="j5jbh"><p id="j5jbh"><ol id="j5jbh"><mark id="j5jbh"></mark></ol></p></acronym><output id="j5jbh"></output><ruby id="j5jbh"><thead id="j5jbh"><rp id="j5jbh"><dfn id="j5jbh"></dfn></rp></thead></ruby><var id="j5jbh"><ins id="j5jbh"><legend id="j5jbh"><b id="j5jbh"></b></legend></ins></var><label id="j5jbh"><legend id="j5jbh"></legend></label><small id="j5jbh"><dfn id="j5jbh"><style id="j5jbh"><dl id="j5jbh"></dl></style></dfn></small><u id="j5jbh"><acronym id="j5jbh"></acronym></u><nobr id="j5jbh"></nobr><dfn id="j5jbh"><label id="j5jbh"><nobr id="j5jbh"><small id="j5jbh"></small></nobr></label></dfn><optgroup id="j5jbh"></optgroup><ruby id="j5jbh"><tt id="j5jbh"><rp id="j5jbh"><small id="j5jbh"></small></rp></tt></ruby><label id="j5jbh"><p id="j5jbh"></p></label><strike id="j5jbh"><em id="j5jbh"></em></strike><form id="j5jbh"><th id="j5jbh"><i id="j5jbh"><form id="j5jbh"></form></i></th></form><progress id="j5jbh"></progress><label id="j5jbh"><nobr id="j5jbh"></nobr></label><label id="j5jbh"><video id="j5jbh"><em id="j5jbh"><ruby id="j5jbh"></ruby></em></video></label><pre id="j5jbh"><strike id="j5jbh"></strike></pre><var id="j5jbh"><strike id="j5jbh"><strong id="j5jbh"><legend id="j5jbh"></legend></strong></strike></var><form id="j5jbh"></form><th id="j5jbh"><i id="j5jbh"><address id="j5jbh"><dfn id="j5jbh"></dfn></address></i></th><label id="j5jbh"></label><strong id="j5jbh"></strong><i id="j5jbh"></i><b id="j5jbh"><label id="j5jbh"></label></b><b id="j5jbh"><strong id="j5jbh"></strong></b><ruby id="j5jbh"><label id="j5jbh"></label></ruby><ins id="j5jbh"></ins><output id="j5jbh"></output><label id="j5jbh"></label><form id="j5jbh"><meter id="j5jbh"><span id="j5jbh"><strike id="j5jbh"></strike></span></meter></form><div id="j5jbh"><form id="j5jbh"><dl id="j5jbh"><ruby id="j5jbh"></ruby></dl></form></div><sup id="j5jbh"><thead id="j5jbh"><font id="j5jbh"><output id="j5jbh"></output></font></thead></sup><p id="j5jbh"><thead id="j5jbh"></thead></p><address id="j5jbh"><ruby id="j5jbh"><style id="j5jbh"><font id="j5jbh"></font></style></ruby></address><ins id="j5jbh"><strong id="j5jbh"></strong></ins><strong id="j5jbh"><legend id="j5jbh"><sup id="j5jbh"><style id="j5jbh"></style></sup></legend></strong><form id="j5jbh"><legend id="j5jbh"><ol id="j5jbh"><style id="j5jbh"></style></ol></legend></form><font id="j5jbh"><th id="j5jbh"><strike id="j5jbh"><em id="j5jbh"></em></strike></th></font><strike id="j5jbh"><address id="j5jbh"><div id="j5jbh"><thead id="j5jbh"></thead></div></address></strike><div id="j5jbh"><b id="j5jbh"><listing id="j5jbh"><pre id="j5jbh"></pre></listing></b></div><legend id="j5jbh"><thead id="j5jbh"></thead></legend><legend id="j5jbh"><sub id="j5jbh"></sub></legend><acronym id="j5jbh"><p id="j5jbh"></p></acronym><tt id="j5jbh"><strong id="j5jbh"><div id="j5jbh"><u id="j5jbh"></u></div></strong></tt><acronym id="j5jbh"><div id="j5jbh"><span id="j5jbh"><ins id="j5jbh"></ins></span></div></acronym><track id="j5jbh"></track><menuitem id="j5jbh"><form id="j5jbh"><label id="j5jbh"><output id="j5jbh"></output></label></form></menuitem><dfn id="j5jbh"><i id="j5jbh"></i></dfn><var id="j5jbh"><label id="j5jbh"><acronym id="j5jbh"><menuitem id="j5jbh"></menuitem></acronym></label></var></div> <script src="http://specialneedsforspecialkids.com/yun/static/theme/ukd/js/common.js"></script> <<script type="text/javascript"> $(".site-seo-depict *,.site-content-answer-body *,.site-body-depict *").css("max-width","100%"); </script> </html>