Linux中国 Linux中国门户站!
设为主页 设为主页
收藏本站 收藏本站
 
当前位置 :首页 ->网站设计 ->CSS/CSS2 ->正文

在网页中调用系统调色板和测试所有安装字体

来源:Linuxdby.com 作者:Webmaster 时间:2007-04-12 点击: [收藏] [投稿]
  其实只是用到clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b这个控件的一些属性和方法而已,对于此控件的任何疑问,请查询MSDN
<style>
body,span,button{font-size:9pt;font-family:'Courier New' 宋体}
input,textarea{border:1px solid #000}
select{font-size:9pt;font-family:'Courier New' 宋体;width:150;height:10;background:#db811c}
</style>
<!--上面是为美观而定义的CSS-->
<script>
var oInitColor = "db811c" file://定义调色板的默认颜色
var oBject='<OBJECT id=dlgHelper CLASSID="clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b" width="0px" height="0px"></OBJECT>' file://控件代码,字体和调色板都是它方法属性的一部分
function oFonts(){
if(!document.getElementById('dlgHelper'))document.body.insertAdjacentHTML("AfterEnd",oBject) file://如果
var oOptions="<select onchange='demo.style.fontFamily=this.options[this.selectedIndex].value'><option>共找到"+dlgHelper.fonts.count+"种字体"
for (i=1;i<dlgHelper.fonts.count;i++)  file://循环输出字体
     oOptions+="<option value='"+dlgHelper.fonts(i)+"'>"+dlgHelper.fonts(i)
oOptions+="</select>"
list.innerHTML=oOptions
}

function oCP(){
if(!document.getElementById('dlgHelper'))document.body.insertAdjacentHTML("BeforeEnd",oBject)
var oColor = dlgHelper.ChooseColorDlg(oInitColor).toString(16) file://弹出调色板
oColor=((oColor.length < 6)?"000000".substring(0,6-oColor.length):"")+oColor file://按六位十六进制补齐返回颜色代码
demo.style.color="#"+oColor file://设置字体颜色
oInitColor=oColor file://对oInitColor重赋值,使打开调色板时的默认颜色为上次选中的颜色
}
</script>
font-size:<select style="width:40" onchange="demo.style.fontSize=this.options[this.selectedIndex].value+'pt'"><script>for(i=1;i<61;i++)document.write("<option value="+i+">"+i)</script></select>
    font-family:<span id=list>'Courier New'</span>
<br><input type=button onclick=oFonts() value="Show SysFonts">
    <input type=button onclick=oCP() value="Show ColorPanel">
<br><textarea style="width:100%;height:300" id=demo style="overflow:hidden;border:1px solid #999999">测试演示TestDemo</textarea>
  脚本效果需要IE5.5+的支持





 如果您对本文有任何疑问或者建议,请到讨论区发表您的意见: >> 论坛入口 <<



上一篇: 用css使网页图片半透明   下一篇: 自定多姿多彩的网页链接下划线

文章评论】 【收藏本文】 【推荐好友】 【打印本文】 【我要投稿】 【论坛讨论
更多相关文章
Power by linux-cn.com 粤ICP备05006655号