Warning: error_log(/data/www/wwwroot/hmttv.cn/caches/error_log.php): failed to open stream: Permission denied in /data/www/wwwroot/hmttv.cn/phpcms/libs/functions/global.func.php on line 537 Warning: error_log(/data/www/wwwroot/hmttv.cn/caches/error_log.php): failed to open stream: Permission denied in /data/www/wwwroot/hmttv.cn/phpcms/libs/functions/global.func.php on line 537 亚洲伦理一区,免费在线视频一区,日韩在线视频免费观看

          整合營銷服務商

          電腦端+手機端+微信端=數(shù)據(jù)同步管理

          免費咨詢熱線:

          CSS3中神奇的box-shadow屬性,助你制作幾個復雜的圖案

          在之前的文章中有講解過,如何通過CSS代碼實現(xiàn)類似于杯子和心形的圖案,今天這篇文章我們繼續(xù)來看看兩個復雜的圖案。

          文章中的代碼已經(jīng)放到github上了,感興趣的同學可以自取。

          https://github.com/zhouxiongking/article-pages/blob/master/articles/border/complexFigure2.html

          CSS3

          相機

          首先我們來看看相機的實現(xiàn)效果。

          效果圖

          然后我們再一步步分析如何實現(xiàn)這個效果。

          同樣我們需要對整個圖案進行拆分,主要分為三個部分。

          • 相機的主體部分,背景色為黑色。

          • 右上角的白色背景小方框。

          • 中間的幾個黑白相間的圓環(huán)。

          相機主體

          相機主體部分就是一個div,完全通過border屬性設置,因此需要保證其width: 0。

          由于主體部分需要呈現(xiàn)為長方形,所以border的左右兩個方向要比上下兩個方向值大,border在不設置顏色的情況下默認為黑色。

          最后設置border-radius值,讓其四個角呈現(xiàn)為圓角。

          最終得到的相機主體部分CSS屬性如下。

          相機主體CSS屬性

          右上角長方形

          相機的右上角有個小的長方形,我們通過:after偽元素實現(xiàn)。

          • 將其位置設置為絕對定位position: absolute。

          • 設置top和left兩個方向的偏移量。

          • 設置一個寬度但是高度值為0,通過border-top讓其顯示為一個長方形,border的顏色設置為白色。

          • 偽元素的content: ''

          通過以上的分析我們得到以下的CSS代碼。

          右上角CSS代碼

          中間的圓環(huán)

          大家都很容易想到中間的圓環(huán)肯定是通過偽元素:before來實現(xiàn)了。

          • 將其位置定義為絕對定位position: absolute。

          • 設置top和left兩個方向的偏移量。

          • 由于這里有圓環(huán),我們設置其內容的高度和寬度。

          • 因為是圓形,border-radius設置為50%

          • 設置border值,使其背景色為白色。

          通過以上的分析我們得到如下的CSS代碼。

          CSS代碼

          運行上述的代碼后我們卻發(fā)現(xiàn)得到的圖案是這樣的。

          運行后的圖案

          是不是覺得少了點什么?

          對,中間的圓形少了一個環(huán),那么我們該怎么補充上這個環(huán)呢?

          這里我們可以使用神奇的box-shadow屬性。

          box-shadow屬性主要是用來給元素周圍添加陰影效果的,它的基本用法大家可以看看CSS3的文檔。

          box-shadow接收的第三個參數(shù)表示的是陰影模糊的半徑,如果其值為0,則表示不具有模糊效果,本例子中因為要在圓形外面再增加一個圓形圖案,就需要將其值設置為0。

          還有很重要的一點就是:可以給box-shadow設置多組值,任意一個相同的屬性,后面定義的值都會兼容前面的值,并不會覆蓋掉。

          所以同心圓就只需要將box-shadow設置為兩組值即可,外層與內層顏色不同。

          最終得到的中間圓環(huán)CSS屬性如下所示。

          CSS代碼

          運行上述代碼后就可以得到文字一開始的相機圖案了。

          月亮

          接下來我們再看一個通過box-shadow可以很容實現(xiàn)的月亮圖案。

          月亮圖案

          乍一看這個圖案沒有那么容易實現(xiàn),其實熟悉border-radius和box-shadow屬性的同學可以很容易想到,這個圖案實現(xiàn)的核心就是利用box-shadow設置右側陰影。

          然后設置rotate值使其旋轉一定的角度。

          通過以上的分析可以得到以下的代碼。

          月亮的CSS代碼

          運行上述代碼即可得到月亮圖案。

          結束語

          今天這篇文章通過CSS屬性實現(xiàn)了相機和月亮兩個圖案,再結合前幾篇文章中實現(xiàn)的杯子和心形圖案,相信大家對CSS的神奇之處有所折服吧。

          大家也趕緊動手自己實現(xiàn)一些常用的圖案吧。

          論您是CSS的新手還是經(jīng)驗豐富的老手,了解和理解box模型都很重要。讓我們更好地了解它。

          每個初學者都應該從基礎開始。以CSS為例,基礎是學習Box模型。在繼續(xù)學習其他CSS概念之前,您應該首先掌握它!

          盒子(Box)模型是CSS的基本元素。

          它確實會讓初學者感到困惑,所以現(xiàn)在是時候糾正錯誤了。在這里,您將了解box模型的所有基本元素以及它們是如何使用的。

          在深入研究之前,每個人都需要了解web設計中的每個元素都是一個矩形框。您可能已經(jīng)聽過很多次了,但是這是每個開發(fā)人員都應該注意的一個重要概念。

          現(xiàn)在,讓我們來解釋一下神秘的盒子模型!

          盒子模型結構

          如上所述,box模型的結構包括:

          Content (height and width).

          Padding.

          Border.

          Margin.

          這些是瀏覽器呈現(xiàn)框模型所需的所有元素。值得慶幸的是,有了CSS,我們可以單獨地控制它們。讓我們來看看。

          在本文中,我們將使用以下代碼并逐漸添加到其中。

          HTML

          <div class="box">Lorem ipsum dolor amet whatever woke cronut, 
          farm-to-table church-key tousled edison bulb. </div>
          

          CSS

          .box {
           background-color: hotpink;
           color: #fff;
          }
          

          The Content

          Content非常清晰。它是具有特定寬度和高度的元素的內容。可以使用CSS屬性的高度和寬度設置固定的高度和寬度,也可以由內容本身決定。

          現(xiàn)在,有一件事讓人有點困惑,那就是使用內聯(lián)或塊級元素。

          使用內聯(lián)和塊級元素(Using Inline and Block Level Elements

          為了刷新您的內存,內聯(lián)元素和塊元素之間的區(qū)別在于塊元素占用了容器寬度的100%,而內聯(lián)元素只占用了內容需要的空間量。

          在使用內聯(lián)元素時,不可能為該元素設置固定的寬度或高度,因為元素沒有預先確定的寬度和高度(因為寬度和高度由內容決定)。這可以通過將元素轉換為塊元素來克服。

          與內聯(lián)元素不同,使用塊級元素時,可以輕松地為其設置固定的寬度或高度。由于在默認情況下,塊級元素占容器寬度的100%,我們可以通過設置一個固定的寬度輕松覆蓋它。

          您還可以將元素轉換為inline-block。當使用inline-block時,元素具有內聯(lián)元素的行為(只占用內容的空間),但是您可以像使用塊元素那樣操作它。

          現(xiàn)在,當我們有一個塊級元素時,我們可以給它一個寬度和高度。

          CSS

          .box {
           height: 200px;
           width: 200px;
           background-color: hotpink;
           color: #fff;
          }
          

          結果如下圖:

          The Padding

          接下來,我們將在我們的框中添加一些填充。

          padding定義了內容和框的邊緣之間的空間。

          讓我們看看它在我們的例子中的作用

          CSS

          .box {
           height: 200px;
           width: 200px;
           background-color: hotpink;
           color: #fff;
           padding: 10px;
          }
          

          結果如圖:

          在圖像中,我們看到padding如何影響框的整體外觀。框的內容和四邊都有10px的空間。我們也可以向四面八方單獨添加padding,使用padding-top padding-bottom,padding-left padding-right。

          The Border

          因為我們是從內到外,下一步就是定義border。border圍繞著內容,您不必使用它,但它仍然存在。這意味著border的寬度為0。

          現(xiàn)在我們添加一個邊框。

          CSS

          .box {
           height: 200px;
           width: 200px;
           background-color: hotpink;
           color: #fff;
           padding: 10px;
           border: solid 3px black;
          }
          

          The Margin

          框模型的最后一個方面是margin。正如你們所知道的,margin是border外的空間。它是元素之間的空間。

          在實際示例中演示這一點的最佳方式是向您展示兩個元素是如何放置的,以及如何使用和不使用margin邊距。

          HTML

          <div class=”box”></div>
          <div class=”box”></div>
          

          CSS

          .box {
           height: 200px;
           width: 200px;
           background-color: hotpink;
           color: #fff;
           padding: 10px;
           border: solid 3px black;
           margin: 0
          }
          

          在這個例子中,我們看到,沒有邊距,兩個元素是如何結合在一起的,它們之間沒有空間。

          現(xiàn)在,添加margin

          CSS

          .box {
           margin: 20px;
          }
          

          現(xiàn)在,這看起來更好。我們在Box之間增加了一些空間。我們還可以使用margin - top、margin - bottom、margin - left或margin - right來單獨添加元素的每一側上的空間。

          總結

          恭喜,你終于完成了這篇文章!那么,我們學到了什么?

          網(wǎng)頁上的每個元素基本上都是一個框。

          box模型的方面是content, padding, border, and margin.。

          使用內聯(lián)元素時,不能為該元素設置固定的寬度或高度,而使用塊和內聯(lián)塊元素則可以。

          希望這能幫助你學到一些新的東西或者刷新你的記憶。

          3C詞匯和術語表

          • A ?

          • B ?

          • C ?

          • D ?

          • E ?

          • F ?

          • G ?

          • H ?

          • I ?

          • J ?

          • K ?

          • L ?

          • M ?

          • N ?

          • O ?

          • P ?

          • Q ?

          • R ?

          • S ?

          • T ?

          • U ?

          • V ?

          • W ?

          • X ?

          • Y ?

          • Z ?

          • 以A字母開頭的詞匯

            英文中文
            abstract module抽象模組
            access訪問、存取
            access control存取控制
            access control information存取控制資訊
            access mechanism存取機制
            access rights存取權限
            accessibility無障礙性
            accessibility information無障礙網(wǎng)頁資訊
            accessibility problem無障礙網(wǎng)頁問題
            accessible無障礙的
            accessible authoring practice無障礙創(chuàng)作實踐
            acquired infoset獲取資訊集
            ACSS (Audio cascading style sheets)ACSS (音頻階層樣式表)
            activate啟用
            active grammar正在使用的文法
            active perceivable unit使用中的可視單元
            activity活動
            actor角色
            adaptation適應、調節(jié)
            adaptation preferences適配偏好設定
            additional characters附加字元
            advisory board諮詢常委會
            advisory committee諮詢委員會
            age壽命
            agent代理
            aggregated authored units集成創(chuàng)作單元
            aggregation集成
            alert警告 (信號)
            alphaalpha
            alpha compactionalpha 壓縮、透明度
            alpha separationalpha 分色
            alpha tablealpha 表
            alternative information替代資訊
            amayaamaya
            ancestor祖先、前輩結點
            anchor錨點
            ancillary chunk輔助數(shù)據(jù)塊/區(qū)塊
            animation動畫
            annotation注釋
            anonymity匿名性
            antecedent前提
            apacheapache
            appletapplet (應用小程序)
            application應用程式、應用
            application personalization應用程式個性化
            application programming interface (API), conventional input/output/device API應用程式編程界面 (API),通用輸入/輸出/設備 API
            arc
            architecture架構
            argument參數(shù)
            artifact物件
            ASCII artASCII 藝術
            ASR自動語音識別
            assertion斷言
            assistive technology輔助技術
            asynchronous非同步的
            asynchronous exchange非同步交換
            at user option用戶可選擇的
            atomic原子的
            atomic test原子性測試
            attribute屬性
            attribute name屬性名稱
            attribute specifications屬性規(guī)范
            attribute value屬性值
            attribute, or CC/PP attributeCC/PP 屬性
            attribute-list declarations屬性列表宣告
            audio音頻、音訊
            audio description音頻描述
            audio track音軌
            audio-only presentation純音頻演示
            audit guard稽核防護機制
            auditory description聽覺描述
            authentication身份驗證
            author作者
            author styles作者樣式
            authored unit創(chuàng)作單元
            authoring創(chuàng)作
            authoring tool創(chuàng)作工具
            authorization授權
            axis座標軸

            以B字母開頭的詞匯

            英文中文
            back link返回連結/鏈結
            background image interference背景圖像干擾
            backward compatible向下兼容
            base text基礎文本
            baseline基線
            basic readability基本可讀性
            binding綁定、繫結
            binding expression綁定表達式
            bit depth色彩深度
            black box黑框
            bopomofo注音符號
            bot自動代理程序
            bounding box邊界框、區(qū)域框
            box
            braille點字
            bridge橋接器
            browser瀏覽器
            button按鈕
            byte位元組
            byte order位元組順序

            以C字母開頭的詞匯

            英文中文
            cache快取
            cacheable可快取的
            Candidate Recommendation (CR)候選推薦標準 (CR)
            capability性能
            captions字幕
            card卡、卡片
            cascading style sheets (CSS)階層樣式表 (CSS)
            catch elementcatch 元素
            CC/PP processorCC/PP 處理器
            CC/PP repositoryCC/PP 資料儲存庫
            CDATa sectionsCDATa 區(qū)段
            CERN歐洲粒子物理研究所
            certification認證、憑證
            chair主持、(小組的) 主席
            chairman主席
            channel通道
            character字元
            character data字元資料
            character data (CDATa )字元資料 (CDATa )
            character encoding字元編碼
            character or expression depth字元或表達式深度
            character or expression height字元或表達式高度
            character or expression width字元或表達式寬度
            character reference字元參考
            check for檢查
            child子 (元素)
            child子 (節(jié)點)
            choice選擇
            choreography(Webservice) 編排
            chromaticity (CIE)色度 (CIE)
            chunk數(shù)據(jù)塊、區(qū)塊
            class類別
            class definition類別定義
            class description類別描述
            class name類別名稱
            class of products產品類別
            click-stream點擊流、點選串流
            client客戶端
            collapse折迭
            collated text transcript按序文字記錄、逐字稿
            colour type色彩類型、顏色類型
            comm傳訊、通訊
            comments注釋、注解
            complete完備的
            complex ruby markup複雜旁注標記
            compliance一致性
            component組件
            composite (verb)組合、複合
            computed expression計算所得的表達式
            concept概念
            condition條件
            conditional content條件內容
            conditional sections條件區(qū)段
            confidentiality機密性
            confidentiality機密性、保密性
            configuration配置
            configure, control配置,控制
            conformance一致性
            conformance clause一致性條款
            conformance level一致性級別
            conformance testing一致性測試
            conforming document一致性文件
            connection(網(wǎng)絡) 連接
            consequent結論、結果
            consistent一致的
            constraint限制
            contained (element a is contained in B)包含于 (元素A包含于元素B)
            container (Constructor)容器 (構造器)
            containing document容器文件
            content內容
            content developer內容開發(fā)者
            content elements內容元素
            content generation內容生成
            content model內容模型
            content negotiation內容協(xié)商
            content provider內容供應商
            content selection內容選擇
            content set內容集
            content token element內容記號元素
            context (of a given mathML expression)(給定 mathML 表達式的) 上下文、取義
            context node上下文節(jié)點、取義節(jié)點
            context position上下文位置、取義位置
            context size上下文大小、取義大小
            contradictory behaviors矛盾行為
            control控制
            control item控制項目
            convenience便利
            conversation會話
            conversion tool轉換工具
            COO首席營運總監(jiān)、首席營運長
            cookiecookie
            correct正確的
            credentials憑證、憑據(jù)
            critical chunk關鍵數(shù)據(jù)塊/區(qū)塊
            CSS (Cascading style sheets)CSS (階層樣式表)
            CSS W3C cascading style sheet specificationCSS W3C 階層樣式表規(guī)范
            cyberspace網(wǎng)絡空間、網(wǎng)際空間
            cyccyc (知識表示項目)

            以D字母開頭的詞匯

            英文中文
            daemon獨立后臺程序
            data category資料類型
            data element資料元素
            data model資料模型
            data resource資料資源
            data schema資料綱目
            data set資料集
            data structure資料結構
            data -valued property資料類型屬性
            database資料庫
            datastream資料流
            datatype資料類型
            datatype property資料類型屬性
            date space綱站編年區(qū)
            decideable可判定的
            declaration宣告
            declared已宣告的
            decomposition分解
            deepest最深的
            default預設
            default namespace預設命名空間
            deferred request authentication推遲請求驗證
            defining required attributes定義必要屬性
            defining the type of attribute values定義屬性值類型
            deflatedeflate (一種壓縮演算法)
            delivered image傳送完成的圖像
            delivery context傳送上下文、傳送取義
            delivery policy傳送政策
            delivery unit傳送單位
            deprecated棄用
            deprecated feature已棄用的功能
            depth深度
            dereference a URI重新訪問 URI
            descendant子節(jié)點
            descendants子節(jié)點
            device設備
            device independent與設備無關的
            device-independence設備無關
            dialog對話
            digital rights management數(shù)碼/數(shù)位版權管理
            digital signature數(shù)碼簽署、數(shù)位簽章
            dimensions of variability (DoV)變異維 (DoV)
            direct sub-expression (of a mathML expression of)(mathML 表達式的) 直接子表達式
            directly contained (element a in B)(a ) 直接包含于 (B)
            director領導人、總監(jiān)
            discovery探索
            discovery service探索服務
            discretionary choices任意選擇
            discretionary item任意項目
            document文件
            document character set文件字元集
            document content, structure, and presentation文件內容,結構,表達
            document entity文件實體
            document language文件語言
            document model文件模型
            document object model文件物件模型
            document object, document文件物件,文件
            document order文件順序
            document profile文件設置文件
            document source, text source文件來源,文本來源
            document style semantics and specification language (DSSSL)文件樣式語義和規(guī)范語言 (DSSSL)
            document tree文件樹
            document type文件類型
            document type declaration文件類型宣告
            document type definition (DTD)文件類型定義 (DTD)
            documentation參考文件
            DOM (Document object model)DOM (文件物件模型)
            DOM (Document object model, see http://www.w3.org/DOM/)DOM (文件物件模型)
            DOM level 0DOM level 0
            domain網(wǎng)域
            domain name網(wǎng)域名稱
            driver驅動程式
            DTDDTD
            DTD文檔類型定義 (DTD)
            DTD-determined IDDTD 確定 ID
            DTMF (Dual tone multi-Frequency)DTMF (雙音多頻)
            dublin core都柏林核心
            dynamic content動態(tài)內容
            dynamic HTML (DHTML)動態(tài) HTML (DHTML)

            以E字母開頭的詞匯

            英文中文
            early normalization提早規(guī)范化
            ease of parsing and serializing:剖析和序列化的簡化
            EBT (Electronic book technology)電子圖書技術
            eCMAScripteCMAScript
            EDI (Electronic data interchange)EDI (電子資料交換)
            editing view編輯閱覽
            electronic data interchange (EDI)電子資料交換 (EDI)
            element元素
            element content元素內容
            element name元素名稱
            element type元素類型
            element type declaration元素類型宣告
            element, element type元素,元素類型
            elements元素
            embed嵌入
            embedded object嵌入式物件
            Embedded Web request嵌入式 Web 請求
            embellished operator修飾操作符
            empty
            empty-element tag空元素標籤
            enabled element, disabled element啟用的元素,停用的元素
            encryption加密
            end point終點
            end-tag結束標籤
            ending resource結束資源
            enquireenquire (程式名)
            entail推導
            entities實體
            entity實體
            entity reference實體參考
            enumerated attributes枚舉屬性、列舉屬性
            episode情節(jié)
            equable practice等同的實踐
            equivalent等價的
            equivalent (for content)(內容上) 等價
            error錯誤
            error correction錯誤修正
            error recovery錯誤修復
            escape轉義
            event事件
            events and scripting, event handler, event type事件和腳本,事件處理器,事件類型
            executable content可執(zhí)行內容
            expanded name擴展/擴充名稱
            expanded-name擴展/擴充名稱
            explicit expiration time顯式過期時間
            explicit user request顯式用戶請求
            Explicit Web request顯式 Web 請求
            explicitly undefined behaviors顯式未定義行為
            extended language擴展語言
            extended link擴展連結/鏈結
            extended links擴展連結/鏈結
            extending pre-defined elements擴展預定義元素
            extensible可擴展的
            extensible markup language (XML)可擴展標記語言 (XML)
            extensible style language (XSL)可擴展樣式語言 (XSL)
            extension擴充
            extensional外延的
            external外部的
            external entity外部實體
            external markup declaration外部標記宣告
            externally-determined ID外部可確定 ID

            以F字母開頭的詞匯

            英文中文
            facet分面
            facilities設施
            fatal error致命錯誤
            feature特性、特徵、功能
            fellow研究員
            fences括號
            FIa (Form interpretation algorithm)FIa (表格解釋演算法)
            filter過濾器
            filtering過濾
            first node rule首節(jié)點規(guī)則
            first-hand第一手的
            flexible authoring靈活創(chuàng)作
            focus of attention關注焦點
            focus, content focus, user interface focus, current focus焦點,內容焦點,用戶界面焦點,目前焦點
            following element后繼元素
            font字體
            for compatibility為了兼容性
            for interoperability為了互用性
            form表格
            form control表格控制
            form item表格項目
            form item variable表單項目變量
            formal正規(guī)
            fragment identifier碎片識別符
            fragmentation碎片
            frame buffer框緩沖區(qū)
            fresh未過期的
            freshness lifetime有效期
            FTF面對面
            functional adaptation功能適配
            functional user experience功能用戶體驗

            以G字母開頭的詞匯

            英文中文
            gammagamma
            gateway閘口
            general entities通用實體
            generic identifier通用識別符
            GIF (Graphics interchange format)GIF (圖形交換格式)
            GILC (Global internet liberty campaign)GILC (全球互聯(lián)網(wǎng)自由化運動)
            glossary of terms for device independence設備無關的術語表
            glyph字形
            good practice優(yōu)秀實踐
            graphical圖形的
            graphics圖形
            greyscale灰度、灰階
            group ruby組旁注

            以H字母開頭的詞匯

            英文中文
            harmonized adaptation協(xié)調適應
            harmonized user experience協(xié)調用戶體驗
            height高度
            heuristic expiration time啟發(fā)式過期時間
            highlight突顯
            hint提示
            hiragana平假名
            host主機
            host主辦者
            host language主語言
            host page主網(wǎng)頁、主頁
            HTMLHTML
            HTML (Hypertext markup language)HTML (超文本標記語言)
            HTTP (Hypertext transfer protocol)HTTP (超文本傳輸協(xié)議)
            HTTP clientHTTP 客戶端
            HTTP gatewayHTTP 閘口
            HTTP payload entityHTTP 負載實體
            HTTP proxyHTTP 代理
            HTTP representationHTTP 表示
            HTTP requestHTTP 請求
            HTTP responseHTTP 回應
            HTTP serverHTTP 伺服器
            hybrid document溷合文件
            hyperlink超連結/鏈結
            hypermedia超媒體
            hypertext超文本

            以I字母開頭的詞匯

            英文中文
            idempotent恒等
            identical等同的
            identified data被識別的資料
            identifier識別符
            ideograph表意文字 (如方塊字)
            iff當且僅當、若且唯若
            image圖像、圖形
            image data圖像資料
            image map圖像地圖
            implementation實現(xiàn)、實作
            implementation conformance statement (ICS)實現(xiàn)一致性聲明 (ICS)
            implementation platform實現(xiàn)平臺
            Implicit Web request隱式 Web 請求
            important重要的
            imports closure匯入閉包
            inbound流入
            inbound/outbound流入/流出
            include location包含位置
            include parent包含父(項目)
            included包含的
            included items包含的項目
            inclusion target包含目標
            inconsistent不一致的
            independent web獨立網(wǎng)頁
            index索引
            indexed-colour索引色
            indexical索引的
            indexing索引
            indirectly contained間接包含
            individual個體
            individual-valued property個體價值屬性
            infer推理
            inform通知
            information resource資訊資源
            information set資訊集
            information space資訊空間
            informative參考性的
            informative text參考文本
            initial SOAP sender初始 SOAP 發(fā)送者
            input configuration輸入配置
            input item輸入項目
            input modalities輸入模態(tài)
            INRIa (Institut national de recherche en infomatique et automatique)INRIa (法國國家信息與自動化研究所)
            instance實例
            instance data實例資料
            instance data node實例資料節(jié)點
            instance of(類別的) 實例
            instance of mathMLmathML 的實例
            instantiate示例
            integrity完整性
            intensional內涵的
            interaction交互、互動
            interactive element, non-interactive element交互式的元素,非交互式的元素
            interlaced PNG image交錯的 PNG 圖像
            internal內部的
            internal entity內部實體
            internationalized resource identifier國際化資源識別符
            internet互聯(lián)網(wǎng)、網(wǎng)際網(wǎng)絡
            interoperability互用性
            interpretation解釋、理解
            intranet內聯(lián)網(wǎng)
            intrinsic dimensions固有維度
            inverse function反函數(shù)
            IP (Internet protocol)IP (互聯(lián)網(wǎng)協(xié)議)
            IPR (Intellectual property rights)IPR (知識產權)
            IRCIRC (互聯(lián)網(wǎng)中繼聊天)
            IRI referenceIRI 參考
            ISO (International standards organization)ISO (國際標準化組織)
            ISP (Internet service provider)ISP (互聯(lián)網(wǎng)服務供應商)

            以J字母開頭的詞匯

            英文中文
            javajava (程式語言)
            jigsawjigsaw (伺服器)
            JPEG (Joint photographic experts group)JPEG (聯(lián)合圖像專家組): 一種圖像編碼格式
            JSGFJSGF (Java API 語音語法格式)

            以K字母開頭的詞匯

            英文中文
            kana<日> 假名
            kanji<日> 日本漢字
            katakana<日> (日本字母) 片假名
            keio university慶應大學 (日本)
            key鍵、密鑰、關鍵
            key binding密鑰綁定
            key location密鑰定位
            key management密鑰管理
            key name密鑰名稱
            key validation密鑰驗證

            以L字母開頭的詞匯

            英文中文
            lambda expressionLambda 表達式
            language binding語言綁定
            language identifier語言識別符
            late normalization推遲規(guī)范化
            layout schema (plural: schemata )佈局綱目
            LCS (Laboratory for computer science)LCS (計算機科學實驗室)
            LEAD (Live early adoption and demonstration)LEAD (早期採用及示范政策)
            level級、層
            lexical space詞法空間
            libwwwlibwww (WWW相關程序模塊庫)
            line-mode(命令) 行模式
            line-mode browser(命令) 行模式瀏覽器
            linearized table線性化表格
            link連結/鏈結
            link text連結/鏈結描述文字
            linkbases連結/鏈結庫
            linking element連結/鏈結元素
            list列表
            literal字面
            literal entity value字面實體值
            live使用中的
            local name本地名稱
            local part本地部分
            local resource本地資源
            logic邏輯
            longfellowlongfellow (W3C 電話會議的 24 線連接器)
            loose coupling鬆散耦合
            lossless compression無損壓縮
            lossy compression有損壓縮
            luminance亮度
            LZ77LZ77 (數(shù)據(jù)壓縮算法)

            以M字母開頭的詞匯

            英文中文
            machine understandable機器可理解的
            manageable service可管理的服務
            management管理
            management capability管理能力
            management interface管理界面
            management policy管理政策
            management semantics管理中的語義
            Manifestation表徵
            MARC recordMARC 記錄 (機讀目錄記錄)
            markup標記
            markup declaration標記宣告
            markup language標記語言
            markup model標記模型
            match匹配
            mathematical markup language (MathML)數(shù)學標記語言 (MathML)
            mathML elementmathML 元素
            mathML expression (within some valid mathMLmathML 表達式
            may可以
            media type媒體類型
            member會員
            menu選單
            message訊息
            message correlation訊息相關性
            message exchange pattern (MEP)訊息交換模式 (MEP)
            message receiver訊息接收者
            message reliability訊息可靠性
            message sender訊息發(fā)送方
            message transport訊息傳輸
            meta -元的 (前綴、表示一個事物應用于其自身)
            metadata元數(shù)據(jù)
            metaphysical形而上的
            micropayments微支付、小額付款
            minimal constraint, principle of最小約束原理
            MIT (Massachusetts institute of technology)MIT (麻省理工學院)
            mixed content溷合內容
            mixed initiative溷合式驅動
            modality模態(tài)
            model binding expression模型綁定表達式
            model item模型項目
            model item property模型項目屬性
            model theory模型論
            modularization模塊化
            modularization model模塊化模型
            module模組
            monoruby單一旁注
            monotonic單調的
            mosaicmosaic (最早出現(xiàn)在 Internet 上的 Web 瀏覽器)
            multi-purpose internet mail extensions (MIME)多用途互聯(lián)網(wǎng)郵件擴充 (MIME)
            multiple authoring多元化創(chuàng)作
            must必須
            mysticmystic (W3C 電話會議的 6 線連接器)

            以N字母開頭的詞匯

            英文中文
            name名稱、名字
            named class具名類別
            namespace命名空間
            namespace document名命空間文件
            namespace name命名空間名稱
            namespace prefix命名空間前綴
            namespace-valid命名空間有效的
            namespace-validating命名空間驗證
            namespace-well-formed命名空間良構的
            natural language自然語言
            navigation導覽
            navigation bars導覽欄
            navigation mechanism導覽機制
            NCSa (National center for supercomputing applications)NCSa (美國國家超級應用計算中心)
            negotiate content協(xié)商內容
            negotiation metadata協(xié)商元數(shù)據(jù)
            nelson, tednelson, ted
            net互聯(lián)網(wǎng) (Internet)
            network byte order網(wǎng)絡位元組順序
            new新的
            neXTneXT (公司名稱)
            NNTP (Network news transfer protocol)NNTP (網(wǎng)絡新聞傳輸協(xié)議)
            node節(jié)點
            non-repudiation不可否認性
            non-variant content無差異內容
            none
            nonmonotonic非單調的
            normative規(guī)范性的
            normative text規(guī)范文本
            normative, informative規(guī)范性的,參考性的
            notation declarations符號宣告
            notations符號、記法
            note筆記

            以O字母開頭的詞匯

            英文中文
            object物件
            object property物件屬性
            obligation義務
            obsolete feature已淘汰的功能
            occurs as attribute value作為屬性值出現(xiàn)
            office辦事處
            onLoadonLoad
            onRequestonRequest
            ontological本體論的
            ontology本體論、本體
            ontology document本體文件
            open source開放源碼
            openMathopenMatch
            operating environment操作環(huán)境
            operation操作
            operator, an mo element操作符,一個 mo 元素
            operator, content element操作符 -> 操作符,內容元素
            optional可選擇的
            optional behaviors可選擇行為
            optional features可選擇功能
            orchestration編排
            origin server源始伺服器
            other其他
            otherwise否則
            outbound流出
            output modalities輸出模態(tài)
            override重載、改寫
            OWL classOWL 類別
            OWL Web Ontology Language GuideOWL 網(wǎng)絡本體語言指南

            以P字母開頭的詞匯

            英文中文
            packet包、封包
            page view頁面閱覽
            palette調色板
            parameter entities參數(shù)實體
            parameter entity參數(shù)實體
            parameter-entity references參數(shù)實體參考
            parent父 (節(jié)點)
            parent document type父文件類型
            parsed character data (PCDATa )已剖析字元資料 (PCDATa )
            parsed entity已剖析實體
            parsed entity's已剖析實體的
            parsing解析
            partial understanding部分理解
            partially selected部份選擇
            participate參與
            pass extraction階段擷取
            pass phrase key通行密鑰
            path路徑
            payload security負載安全
            perceivable unit可感知單元
            permission許可
            permission guard許可保護機制
            person or organization個人或組織
            personal digital assistant (PDa )掌上電腦、電子手掌 (PDa )
            PGP (Pretty good privacy)PGP
            physical transducer物理的轉換器
            PICS (Platform formPICS
            pixel像素
            PKC (public key cryptography)PKC (公鑰密碼學)
            PKI (Public key infrastructure)PKI (公鑰基礎建設)
            placeholder占位
            plug-in外掛
            PNG (Portable network graphics)PNG (可攜式網(wǎng)絡圖形格式)
            PNG datastreamPNG 資料流
            PNG decoderPNG 解碼器
            PNG editorPNG 編輯器
            PNG encoderPNG 編碼器
            PNG filePNG 檔桉
            PNG four-byte signed integerPNG 四位元組符號整數(shù)
            PNG four-byte unsigned integerPNG 四位元組無符號整數(shù)
            PNG imagePNG 圖像
            PNG signaturePNG 簽署/簽章
            point
            point of regard注視點
            pointer指標
            pointer part指標部分
            policy政策
            policy guard政策保護機制
            practice實踐
            pre-defined function預定義函數(shù)
            preceding element前序元素
            preference偏好設定
            presentation elements表達元素
            presentation layout schema表達佈局綱目
            presentation markup表達標記
            presentation token element表達標記元素
            preserve保持
            principal主實體
            principal node type首要節(jié)點類型
            principle原理
            priority 1 (P1)第 1 優(yōu)先 (P1)
            priority 2 (P2)第 2 優(yōu)先 (P2)
            priority 3 (P3)第 3 優(yōu)先 (P3)
            privacy私隱
            privacy policy私隱政策
            process進程、處理
            processing instructions數(shù)據(jù)處理指令
            profile設置文件
            profiling設置文件
            prompt提示、提示輸入
            proof of possession (POP)證明所有權 (POP)
            properties, values, and defaults屬性,值和預設
            property屬性
            property definition屬性定義
            Proposed Edited Recommendation已修正的提議推薦標準
            Proposed Recommendation (PR)提議推薦標準 (PR)
            proposition命題
            protection保護
            protocol協(xié)議、協(xié)定
            provider agent供應商代理
            provider entity供應商實體
            proximity position近似位置
            proxy代理、代理伺服器
            public identifier公共識別符
            publish發(fā)表、發(fā)佈
            publisher發(fā)佈者
            purpose目的、意圖

            以Q字母開頭的詞匯

            英文中文
            qualified name限定名稱
            qualified names限定名稱
            qualifier限定符
            quality assurance, Qa品質保証
            quality of service服務品質、QoS

            以R字母開頭的詞匯

            英文中文
            RDF (Resource description framework)RDF (資源描述架構)
            RDF resourceRDF 資源
            reader讀者
            reading讀音、讀法
            RECREC
            receiver接收者
            recognize識別
            recommendation推薦、推薦標準
            reduced image簡化過的圖像
            reference architecture參考架構
            reference image參考圖像
            reference in attribute value屬性值參考
            reference in content內容參考
            reference in DTDDTD 參考
            reference in entity value實體值參考
            registry注冊、登記
            reify具體化
            relation關係
            remote resource遠端資源
            render渲染、顯示
            rendered content渲染過/顯示的內容
            rendered content, rendered text渲染過/顯示的內容,文字
            rendering渲染、顯示
            rendering preferences渲染/顯示的偏好設定
            repair content, repair text修復內容
            replace替換
            replaced element被替換的元素
            replacement text替換文字
            repository資料庫、檔桉庫
            representation表示
            request請求、要求
            requester agent請求方代理
            requester entity請求方實體
            Rescinded Recommendation作廢的推薦標準
            reserved保留的
            resource資源
            resource error資源錯誤
            resource manifestation資源表徵
            response響應、回應
            restriction約束
            restriction, global全域約束
            restriction, local本地約束
            result infoset結果資訊集
            results verification結果確認
            reverse document order文件逆序
            RFC (Request for comments)RFC (徵求意見)
            RGB mergingRGB 合併
            root
            RPC (remote procedure call)RPC (遠端程序調用)
            RSaRSa (加密算法)
            ruby text旁注文字

            以S字母開頭的詞匯

            英文中文
            safe安全的
            safe interaction安全交戶
            safe zone安全區(qū)域
            sample樣本
            sample depth採樣深度
            sample depth scaling採樣深度映射
            satisfy滿足
            scanline掃描線
            schema綱目
            schema (pl., schemata )綱目
            schema constraint綱目約束
            schema representation constraint綱目表示約束
            schema , RDF schema綱目,RDF 綱目
            schema -determined ID由綱目決定的標識
            schemescheme
            scope of a declaration宣告有效范圍
            screen magnifier屏幕/螢幕放大器
            screen reader讀屏器
            scribe會議記錄員
            script腳本語言、腳本
            secondary resource次要資源
            security安全
            security administration安全管理
            security architecture安全架構
            security auditing安全審核
            security domain安全網(wǎng)域
            security mechanism安全機制
            security model安全模型
            security policy安全政策
            security policy expression安全政策表達式
            security service安全服務
            selected選擇的
            selected sub-expression (of an maction element)(maction 元素中的) 被選子表達式
            selection, current selection選擇,目前選擇
            semantic語義的
            semantic requirement語義需求 (同"測試斷言")
            semantic web語義網(wǎng)
            semantically transparent語義透明的
            sender發(fā)送者
            separation of form from content內容形式相分離
            serial access, sequential navigation循序訪問,順序導覽
            server伺服器、伺務器端程式
            server session伺服器 session
            service服務
            service description服務描述
            service interface服務界面
            service intermediary服務中介
            service provider服務供應商
            service provider (Data controller, legal entity)服務供應商 (資料管理員,法人實體)
            service requester服務請求者
            service role服務角色
            service semantics服務語義
            service-oriented architecture導向服務架構
            sessionsession
            set
            SGML (Standard generalized markup language)SGML (標準通用標記語言)
            shall必須
            should應該
            sibling兄弟
            simple link簡單連結/鏈結
            simple links簡單連結/鏈結
            simple ruby markup簡單旁注標記
            single authoring單一創(chuàng)作
            site maps網(wǎng)站地圖
            size and color of non-text content非文本內容的大小和顏色
            SMIL (Synchronized multimedia integration language)SMIL (同步多媒體集成語言)
            SOAP簡單對象訪問協(xié)議
            SOAP applicationSOAP 應用軟件
            SOAP bindingSOAP 綁定
            SOAP bodySOAP 主體
            SOAP envelopeSOAP 信封
            SOAP faultSOAP 錯誤
            SOAP featureSOAP 功能
            SOAP headerSOAP 標頭
            SOAP header blockSOAP 標頭塊
            SOAP intermediarySOAP 中介
            SOAP messageSOAP 訊息
            SOAP message exchange pattern (MEP)SOAP 訊息交換模式 (MEP)
            SOAP message pathSOAP 訊息路徑
            SOAP moduleSOAP 模組
            SOAP nodeSOAP 節(jié)點
            SOAP receiverSOAP 接收者
            SOAP roleSOAP 角色
            SOAP senderSOAP 發(fā)送者
            sophiasophia (地名: Sophia -Antipolis)
            source document來源文件
            source image來源圖像
            source infoset來源資訊集
            space-like (MathML expression)類空 (MathML 表達式)
            specification規(guī)范
            speech語音
            speech synthesis語音合成
            SRGS (Speech recognition grammar specification)SRGS (語音識別語法規(guī)范)
            SSML (Speech synthesis markup language)SSML (語音合成標記語言)
            stale陳舊的、過時的
            standard標準
            standard generalized markup language (SGML)通用標記語言標準
            start-tag起始標籤
            starting resource起始資源
            state狀態(tài)
            statement聲明
            strict conformance嚴格一致
            string identity matching字元串匹配
            string indexing字元串索引
            string-value字元串值
            structural markup結構化標記
            style sheet樣式表
            style sheets樣式表
            sub-expression (of a mathML expression)(mathML 表達式的) 子表達式
            subdialog子對話
            submission提交的文檔
            subset language子集語言
            subsite子站
            suggested rendering rules for mathML presentation elements推薦的 mathML 表達元素渲染/顯示規(guī)則
            supersite父站
            support, implement, conform支持,實現(xiàn),符合
            supported支持、支援
            SVG (Scalable vector graphics)SVG (可縮放向量圖形)
            synchronize同步
            synchronous同步的
            synthesis processor合成處理器
            system entity系統(tǒng)實體
            system identifier系統(tǒng)識別符
            sysWebsysWeb (W3C 系統(tǒng)網(wǎng)絡組)

            以T字母開頭的詞匯

            英文中文
            tables of contents目錄
            tabular information表格式資訊
            tag標籤
            TAG技術架構組
            tangletangle (程式名)
            tapered prompts漸縮式提示
            TCP (Transmission control protocol)TCP (傳輸控制協(xié)議)
            team團隊
            technical architecture group技術架構組
            technical report技術報告
            term taken verbatim from another source自其他來源逐字沿用的詞彙
            test area測試區(qū)
            test assertion測試斷言
            test case測試桉例
            test framework測試框架
            test purpose測試目的
            test requirement測試需求、測試斷言
            test suite測試集
            testability可測試性
            TEXTEX
            text文本
            text content, non-text content文本內容,非文本內容
            text decoration文本修飾
            text transcript文本抄本
            text-To-Speech文語轉換
            the empty string空字元串
            third-party第三方
            throw拋出
            time parameters時間參數(shù)
            TLS傳輸層安全
            tobintobin (人名: MauriceJ.Tobin)
            token標記
            token element標記元素
            tokenized標記化的
            top-level element (of mathML)(mathML 的) 最高層元素
            top-level included items最高層包含項目
            topology拓撲結構
            tracing跟蹤
            transaction交易
            transcript抄本
            transformation轉換、變換
            traversal遍歷
            triple三元組
            truecolour全彩
            trust service信任服務
            TTSTTS (文語轉換)
            tunnel通道
            type類型
            typeface字體

            以U字母開頭的詞匯

            英文中文
            UCS通用字元集
            UI or action binding expression用戶界面或動作綁定的表達式
            ultimate SOAP receiver最終 SOAP 接收者
            unconditional conformance無條件符合
            uniform resource identifier統(tǒng)一資源識別符
            uniform resource identifier (URI)統(tǒng)一資源識別符 (URI)
            union聯(lián)合、合併
            universe全球的、通用的
            unnamed class未命名類別
            unparsed entity非剖析實體
            unsafe interaction不安全交互
            unspecified未指定的
            upstream/downstream上游/下游
            URI統(tǒng)一資源標識符
            URI (Universal resource identifier)URI (統(tǒng)一資源識別符)
            URI aliasesURI 別名
            URI collisionURI 沖突
            URI ownershipURI 擁有權
            URI persistenceURI 恆久性
            URI referenceURI 參考
            URIsURIs
            URL統(tǒng)一資源定位器
            URL (Uniform resource locator)URL (統(tǒng)一資源定位器)
            usage auditing使用審核
            usage scenario使用場景
            use使用、採用
            use case用例
            user用戶、使用者
            user agent用戶代理,useragent
            user agent (Ua )用戶代理,Ua
            user agent default styles用戶代理預設樣式
            user agent profile用戶代理設置文件
            user control of every user interface component每個用戶界面組建的用戶控制
            user experience用戶體驗
            user experience preferences用戶體驗偏好設定
            user interface, user interface control用戶界面,用戶界面控制
            user session用戶 session
            user styles用戶樣式
            User-input Web request用戶輸入式 Web 請求

            以V字母開頭的詞匯

            英文中文
            valid有效的
            valid mathML data有效的 mathML 資料
            valid style sheet有效的樣式表
            validating processors驗證處理器
            validation驗證
            validation rule驗證規(guī)則
            validation, validate, validating驗證,確認,校驗
            validator驗證器、校驗器
            validity constraint有效性約束
            value space數(shù)值空間
            variant變體
            variant content可變內容
            versioning版本化
            video視頻、視訊
            view閱覽
            view, viewport閱覽,閱覽窗口
            violaviola 語言
            virtual hypertext虛擬超文本
            visual track視軌
            visual-only presentation純視覺演示
            visualText可視化文本
            vocabulary詞彙
            voice語音
            voice browser語音瀏覽器
            voiceXML documentvoiceXML 文件
            voiceXML interpretervoiceXML 解釋/直譯器
            voiceXML interpreter contextvoiceXML 解釋/直譯環(huán)境
            VRML虛擬現(xiàn)實建模語言
            VRML (Virtual reality modeling language)VRML (虛擬現(xiàn)實建模語言)

            以W字母開頭的詞匯

            英文中文
            W3CW3C
            W3C (World wide web consortium)W3C (萬維網(wǎng)聯(lián)盟)
            W3C recommendationW3C 推薦標準
            W3C Recommendation (REC)W3C 推薦標準 (REC)
            WAI (Web accessibility initiative)WAI (無障礙網(wǎng)頁倡議)
            WAIS (Wide area information servers)廣域資訊服務系統(tǒng)
            web萬維網(wǎng)
            web agentweb 代理
            web clientweb 客戶端
            web collectionweb 集合
            web coreweb 核心
            web neighborhoodweb 鄰居
            web page網(wǎng)頁
            web page identifier網(wǎng)頁識別符
            web peripheryweb 外設
            web requestweb 請求
            web request bodyweb 請求主體
            web request headerweb 請求標頭
            web resourceweb 資源
            web responseweb 回應
            web response bodyweb 回應主體
            web response headerweb 回應標頭
            web serverweb 伺服器
            web serviceweb 服務
            web site網(wǎng)站
            web site publisher網(wǎng)站發(fā)佈者
            well-formed良構的
            well-formedness constraint良構性約束
            white point白色點
            width (of a box)(文本或圖形框的) 寬度
            Working Draft (WD)工作草桉
            Working Group Note工作組筆記
            world世界、領域
            world wide web萬維網(wǎng)
            worldWideWeb (one word; no spaces)瀏覽器
            WWWWWW (萬維網(wǎng))

            以X字母開頭的詞匯

            英文中文
            XX
            xanaduxanadu
            xForms modelxForms 模型
            xForms processorxForms 處理器
            XLL (eXtensible linking language)XLL (可擴展連結/鏈結語言)
            XML (Extensible markup language)XML (可擴展標記語言)
            XML declarationXML 宣告
            XML documentXML 文件
            XML nameXML 名稱
            XML namespaceXML 命名空間
            XML processorXML 處理器
            xML-based format基于 XML 的格式
            xPointer processorxPointer 處理器
            XSL (Extensible style sheet language)XSL (可擴展樣式表語言)
            XSL formatting objects (XSL FO)XSL 格式化物件 (XSL FO)
            XSL transformation (XSLT)XSL 轉換語言 (XSLT)

            以Z字母開頭的詞匯

            英文中文
            zakimzakim (W3C 視頻會議)
            zlibzlib 壓縮格式

          主站蜘蛛池模板: 久久一区二区三区精品| 亚洲国模精品一区| 精品一区二区三区免费观看| 亚洲AV午夜福利精品一区二区 | 视频精品一区二区三区| 亚洲国产国产综合一区首页| 丰满爆乳一区二区三区| 国产伦精品一区二区三区在线观看| 高清国产AV一区二区三区| 国产成人欧美一区二区三区 | 亚洲毛片αv无线播放一区| 亚洲国产精品无码第一区二区三区 | 国产精品无码一区二区三区不卡| 亚洲色无码一区二区三区| 国产福利电影一区二区三区久久久久成人精品综合 | 一区二区3区免费视频| 少妇精品久久久一区二区三区| 成人国产精品一区二区网站公司| 成人区人妻精品一区二区不卡视频 | 亚洲制服丝袜一区二区三区 | 日本精品一区二区三区四区| 日韩人妻无码一区二区三区久久| 波多野结衣一区二区三区高清av| 99久久综合狠狠综合久久一区| 亚无码乱人伦一区二区| a级午夜毛片免费一区二区| 国产成人久久精品区一区二区| 国产精品男男视频一区二区三区| 韩国美女vip福利一区| 538国产精品一区二区在线| 国产精品香蕉一区二区三区| 红桃AV一区二区三区在线无码AV | 国产激情无码一区二区app| 免费人妻精品一区二区三区| 深田咏美AV一区二区三区| 午夜福利一区二区三区高清视频 | 亚洲色大成网站www永久一区| 国产情侣一区二区| 波多野结衣久久一区二区| 久久婷婷色一区二区三区| 精品久久国产一区二区三区香蕉 |