js列舉css中所有表徵圖的實現代碼

來源:互聯網
上載者:User

美工做的css樣式裡icon越來越多,手工來寫icon名幾乎不可能實現。所以就有了這個功能點:將css樣式裡的所有icon類列舉出來以圖形化的形式顯示供配置人員選擇!

搜尋一圈,發現介紹從css裡遍曆東西的文章非常少。於是花了半天的時間自己來實現了!先看下一個選擇表徵圖的demo:


這裡用的是easyui:一個comboxtree。
這裡省略引用css和js庫的代碼(jquery和easyui庫)。
html:

複製代碼 代碼如下:<input id="cc" class="easyui-combotree" style="width:200px;">

Javascript: 複製代碼 代碼如下:function getstyle() {
for (var i = 0; i < document.styleSheets.length; i++) {
var rules;
if (document.styleSheets[i].cssRules) {
rules = document.styleSheets[i].cssRules;
}
else {
rules = document.styleSheets[i].rules;
}
for (var j = 0; j < rules.length; j++) {
if (rules[j].selectorText.substr(0, 5) == ".icon")
$('#cc').combotree('tree').tree('append', {
data: [{
id: rules[j].selectorText.substr(1),
text: rules[j].selectorText.substr(1),
iconCls: rules[j].selectorText.substr(1)
}]
});
}
}
}
$(function () {
getstyle();
});

有幾個可能存在的問題:
1.大的項目樣式可能巨多巨大,這種遍曆顯然不可能,需要指定到styleSheets。
2.如果各種大小的表徵圖可能用easyui-combotree不太合理。
最後通過配置icon產生的菜單效果:

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.