選取「視窗 > CSS 屬性」。
- Illustrator 使用手冊
- 認識 Illustrator
- Illustrator 簡介
- 工作區
- Illustrator 中的工具
- 生成式 AI (在中國大陸無法使用)
- 快速動作
- iPad 版 Illustrator
- iPad 版 Illustrator 簡介
- 工作區
- 文件
- 選取和排列物件
- 繪圖
- 文字
- 處理影像
- 顏色
- 雲端文件
- 新增並編輯內容
- 繪圖
- 測量
- 3D 物件和素材
- 顏色
- 上色
- 選取和排列物件
- 改變物件外框
- 文字
- 建立特效
- 網頁圖形
- 讀入、轉存及儲存
- 讀入
- Illustrator 中的 Creative Cloud Libraries
- 儲存和轉存
- 列印
- 自動化工作
- 疑難排解
了解如何為單一物件或在 Illustrator 中設計的整個版面,擷取和匯出 CSS 程式碼。
您可以在 Illustrator 中建立 HTML 頁面的設計。這對網路開發人員是很好的視覺引導,他們可以在 HTML 編輯器中將配置、樣式、物件的程式碼寫入頁面。不過,完全複製元件和物件的外觀和位置是一件耗時乏味的事。
有了 Illustrator ,當您建立 HTML 頁面的配置時,您也可以產生和匯出基本 CSS 程式碼,這些程式碼決定了頁面上元件和物件的外觀。CSS 可讓您控制文字和物件的外觀 (類似字元和圖形樣式)。
檢視和擷取 CSS 程式碼
「CSS 屬性」面板可讓使用者執行以下操作:
- 檢視並複製所選物件的 CSS 程式碼。
- 匯出一個、多個或全部的 Illustrator 元素到 CSS 檔案。
- 匯出所使用的可點陣化圖片。
- 產生特定瀏覽器專用的 CSS 程式碼。
A. 警告,如果某些樣式無法轉換為 CSS 程式碼 B. CSS 匯出選項對話框 C. 匯出選取的 CSS 為檔案 D. 拷貝所選項目樣式到剪貼簿 E. 產生 CSS F. CSS 屬性面板選單 G. 所選物件使用的樣式 H. CSS 程式碼
若要檢視和擷取 CSS 程式碼,請按照以下步驟操作:
-
註解:
確定 Illustrator 文件中的物件在「圖層」面板中有名稱。
-
若要顯示產生的 CSS 程式碼:
對於一個物件:
選取一個物件。「CSS 屬性」面板會顯示該物件的 CSS 程式碼。
對於多個物件:
按住 Shift,選取多個物件,然後選取「CSS 屬性」面板中的「產生 CSS」。
對於所有物件:
按 Ctrl/Cmd + A 以選取所有物件,然後選取「CSS 屬性」面板中的「產生 CSS」。
-
若要取得已產生的 CSS 程式碼,執行下列其中一個作業:
若要複製所選的程式碼:
- 選擇特定程式碼並選取「複製所選樣式」將其複製到剪貼簿。
- 選取「CSS 屬性面板」選單,然後選取「匯出所選 CSS」以匯出到檔案。
若要複製所有程式碼:
- 不選取 CSS 程式碼,然後選取「複製所選樣式」將其複製到剪貼簿。
- 選取「CSS 屬性面板」選單,然後選取「全部匯出」以匯出到檔案。
-
將 CSS 程式碼儲存到檔案時,在「CSS 匯出選項」對話框中選擇選項。
範例 CSS 程式碼
漸層的矩形 (適用於所有瀏覽器)
.GRADIENT_BOX { background : -moz-linear-gradient(0% 50% 0deg,rgba(255, 242, 0, 1) 0%,rgba(254, 236, 1, 1) 10.31%,rgba(253, 218, 4, 1) 24.34%,rgba(251, 190, 9, 1) 40.51%,rgba(247, 150, 15, 1) 58.28%,rgba(243, 99, 24, 1) 77.37%,rgba(238, 37, 34, 1) 97.27%,rgba(237, 28, 36, 1) 100%); background : -webkit-linear-gradient(0deg, rgba(255, 242, 0, 1) 0%, rgba(254, 236, 1, 1) 10.31%, rgba(253, 218, 4, 1) 24.34%, rgba(251, 190, 9, 1) 40.51%, rgba(247, 150, 15, 1) 58.28%, rgba(243, 99, 24, 1) 77.37%, rgba(238, 37, 34, 1) 97.27%, rgba(237, 28, 36, 1) 100%); background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0,rgba(255, 242, 0, 1) ),color-stop(0.1031,rgba(254, 236, 1, 1) ),color-stop(0.2434,rgba(253, 218, 4, 1) ),color-stop(0.4051,rgba(251, 190, 9, 1) ),color-stop(0.5828,rgba(247, 150, 15, 1) ),color-stop(0.7737,rgba(243, 99, 24, 1) ),color-stop(0.9727,rgba(238, 37, 34, 1) ),color-stop(1,rgba(237, 28, 36, 1) )); background : -o-linear-gradient(0deg, rgba(255, 242, 0, 1) 0%, rgba(254, 236, 1, 1) 10.31%, rgba(253, 218, 4, 1) 24.34%, rgba(251, 190, 9, 1) 40.51%, rgba(247, 150, 15, 1) 58.28%, rgba(243, 99, 24, 1) 77.37%, rgba(238, 37, 34, 1) 97.27%, rgba(237, 28, 36, 1) 100%); background : -ms-linear-gradient(0deg, rgba(255, 242, 0, 1) 0%, rgba(254, 236, 1, 1) 10.31%, rgba(253, 218, 4, 1) 24.34%, rgba(251, 190, 9, 1) 40.51%, rgba(247, 150, 15, 1) 58.28%, rgba(243, 99, 24, 1) 77.37%, rgba(238, 37, 34, 1) 97.27%, rgba(237, 28, 36, 1) 100%); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF200', endColorstr='#ED1C24' ,GradientType=0)"; background : linear-gradient(90deg, rgba(255, 242, 0, 1) 0%, rgba(254, 236, 1, 1) 10.31%, rgba(253, 218, 4, 1) 24.34%, rgba(251, 190, 9, 1) 40.51%, rgba(247, 150, 15, 1) 58.28%, rgba(243, 99, 24, 1) 77.37%, rgba(238, 37, 34, 1) 97.27%, rgba(237, 28, 36, 1) 100%); border-style : Solid; border-color : #231F20; border-color : rgba(35, 31, 32, 1); border-width : 1px; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF200',endColorstr='#ED1C24' , GradientType=1); }
漸層的矩形 (適用於 Webkit 型瀏覽器)
.GRADIENT_BOX { background : -webkit-linear-gradient(0deg, rgba(255, 242, 0, 1) 0%, rgba(254, 236, 1, 1) 10.31%, rgba(253, 218, 4, 1) 24.34%, rgba(251, 190, 9, 1) 40.51%, rgba(247, 150, 15, 1) 58.28%, rgba(243, 99, 24, 1) 77.37%, rgba(238, 37, 34, 1) 97.27%, rgba(237, 28, 36, 1) 100%); background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0,rgba(255, 242, 0, 1) ),color-stop(0.1031,rgba(254, 236, 1, 1) ),color-stop(0.2434,rgba(253, 218, 4, 1) ),color-stop(0.4051,rgba(251, 190, 9, 1) ),color-stop(0.5828,rgba(247, 150, 15, 1) ),color-stop(0.7737,rgba(243, 99, 24, 1) ),color-stop(0.9727,rgba(238, 37, 34, 1) ),color-stop(1,rgba(237, 28, 36, 1) )); background : linear-gradient(90deg, rgba(255, 242, 0, 1) 0%, rgba(254, 236, 1, 1) 10.31%, rgba(253, 218, 4, 1) 24.34%, rgba(251, 190, 9, 1) 40.51%, rgba(247, 150, 15, 1) 58.28%, rgba(243, 99, 24, 1) 77.37%, rgba(238, 37, 34, 1) 97.27%, rgba(237, 28, 36, 1) 100%); border-style : Solid; border-color : #231F20; border-color : rgba(35, 31, 32, 1); border-width : 1px; }
多個物件
.NormalCharacterStyle { font-family : Myriad Pro; font-size : 12px; } .st0 { border-style : Solid; border-color : #FFFFFF; border-color : rgba(255, 255, 255, 1); border-width : 0px; } .GRADIENT_BOX { background : -webkit-linear-gradient(0deg, rgba(255, 242, 0, 1) 0%, rgba(254, 236, 1, 1) 10.31%, rgba(253, 218, 4, 1) 24.34%, rgba(251, 190, 9, 1) 40.51%, rgba(247, 150, 15, 1) 58.28%, rgba(243, 99, 24, 1) 77.37%, rgba(238, 37, 34, 1) 97.27%, rgba(237, 28, 36, 1) 100%); background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0,rgba(255, 242, 0, 1) ),color-stop(0.1031,rgba(254, 236, 1, 1) ),color-stop(0.2434,rgba(253, 218, 4, 1) ),color-stop(0.4051,rgba(251, 190, 9, 1) ),color-stop(0.5828,rgba(247, 150, 15, 1) ),color-stop(0.7737,rgba(243, 99, 24, 1) ),color-stop(0.9727,rgba(238, 37, 34, 1) ),color-stop(1,rgba(237, 28, 36, 1) )); background : linear-gradient(90deg, rgba(255, 242, 0, 1) 0%, rgba(254, 236, 1, 1) 10.31%, rgba(253, 218, 4, 1) 24.34%, rgba(251, 190, 9, 1) 40.51%, rgba(247, 150, 15, 1) 58.28%, rgba(243, 99, 24, 1) 77.37%, rgba(238, 37, 34, 1) 97.27%, rgba(237, 28, 36, 1) 100%); border-style : Solid; border-color : #231F20; border-color : rgba(35, 31, 32, 1); border-width : 1px; }
相關主題
有任何疑問或意見嗎?
如果您有任何疑問或想分享想法,歡迎加入 Adobe Illustrator 社群。我們很樂意聽取您的意見。