http://www.cnfunfly.com/bbs/forumdisplay.php?fid=41
http://jandan.net/pic#comment-1697707
Ext.Ajax.request({
url: '/Credit/data/heatmap/HeatMapBaseConfig.xml',
params: {},
success: function (response) {
var text = response.responseText;
heatmapXml = text;
ScenesTransform.Start(DataBuildModule, InterfaceBuildModule, TreeMapBuildModule, ScenesTransform, true);
},
failure: function (response, options) {
alert(response + options);
}
});
http://www.panopticon.com
CSS3 Filters: Altering HTML and Images with just css
http://www.inserthtml.com/2012/06/css-filters/
CSS hack:實現IE6、IE7、Firefox相容
區別IE6與FF:
background:orange;*background:blue;
區別IE6與IE7:
background:green !important;background:blue;
區別IE7與FF:
background:orange; *background:green;
區別FF,IE7,IE6:
background:orange;*background:green !important;*background:blue;
注意事項:
◆IE都能識別*;標準瀏覽器(如FF)不能識別*;
◆IE6能識別*,但不能識別 !important,
◆IE7能識別*,也能識別!important;
◆FF不能識別*,但能識別!important;
另外再補充一個,底線"_",
IE6支援底線,IE7和firefox均不支援底線。
於是大家還可以這樣來區分IE6,IE7,Firefox
background:orange;*background:green;_background:blue;
註:不管是什麼方法,書寫的順序都是firefox的寫在前面,IE7的寫在中間,IE6的寫在最後面。
http://www.w3schools.com/jsref/jsref_tolowercase.asp
http://www.w3school.com.cn/