最近準備研究flash!~小玩下as。
剛剛無意在網上看到些以後可能會有用的東西!摘錄下來~!~
example source code [www.52css.com]
var mystyle:textfield.stylesheet = new textfield.stylesheet();
mystyle.load("sample.css");
content_txt.stylesheet = mystyle;
content_txt.multiline= true;
content_txt.wordwrap = true;
content_txt.html = true;
var story:xml = new xml();
story.ignorewhite = true;
story.load("sample.html");
story.onload = function ()
這個是載入外部css跟html(其實是載入xml當html用-_-b )的。後來den寫了兩種把樣式寫在as裡的方式:
example source code
[www.52css.com]
var css_str:string = ".aoao .aoao:hover";
mystyle.parsecss(css_str)mystyle.setstyle(".aoao", );
mystyle.setstyle(".aoao:hover", );
其實html也可以寫在as裡面,直接拼string就行。對於css在寫在as裡還是載入外部css就要看情況了,用web上還要考慮請求數,檔案大小,快取,更重要的是維護成本。不過在web應用我也沒想到有什麼比較適合的應用,在瀏覽器裡使用html載入flash之後再用flash載入html和css意義並不大,而且支援不是一般的弱,看一下支援的html標籤跟css屬性,=。= 本來想用來解決中文下劃線的問題,結果還是不行,據說別人是用flash畫下劃線滴。
CSS樣式在HTML中引入
css樣式在html中引入 第一種方式在html的頭資訊中定義css 示例 doctype html html head meta charset utf 8 title insert title here title style type text css 我是css 注釋 p style hea...
在HTML中引入CSS的方式
有 4 種方式可以在 html 中引入 css。其中有 2 種方式是在 html 檔案中直接新增 css 另外兩種是引入 外部 css 檔案。內聯方式 內聯方式指的是直接在 html 標籤中的 style 屬性中新增 css。嵌入方式 嵌入方式指的是在 html 頭部中的 標籤下書寫 css 鏈結方...
CSS3 在HTML中引入CSS樣式
html code style color tomato 微微一笑很傾城h1 style font size 32px color tomato 微微一笑很傾城p 這種方式不能使內容與樣式相分離,本質上沒有體現出css的優勢,因此不推薦使用。html code charset utf 8 內部樣式表...