通行证: 用户 密码 域名空间  下载中心 社区论坛 信息公告 my小屋
联系我们
设为首页
加入收藏

 

qq,asp,php,jsp,xml,sql,.net,编程 程序 网页图象 建站经验 私服
首页 | 新闻资讯 | 编程开发 | 网页设计 | 图形图象 | 网络媒体 | 网站模板 | 数 据 库 | 投稿
论坛 | 操作系统 | 系统优化 | 网络安全 | 黑客技术 | 硬件学堂 | 硬件报价 | 服 务 器 | 地图
专题 | 应用软件 | 聊天通讯 | q q 专栏 | 建站经验 | 在线工具 | 站长club | 注 册 表 | 旧版
社会 | 游戏娱乐 | 设计欣赏 | 疑难解答 | 社区论坛 | 网络赚钱 | 网站地图 | 广告服务 | 服务
当前位置:首页>>网页设计>>dreamweaver>>正文 新版上线![旧版]
注:打开慢时请稍等
去掉了灰色倒三角的漂亮下拉列表

http://www.iyit.net  日期:2006-5-5 10:25:52  来源:中国站长学院  点击:
参加讨论

<html>
<head><title>漂亮的下拉框</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<script>
// viaselect environment constants
var ss_env = new object();
ss_env.ie_version = new number(((window.navigator.appversion.split('; '))[1].split(' '))[1]);
ss_env.cr = new object();
ss_env.cr.reversebackground = '#e2519c';
ss_env.cr.reversetext = 'white';
ss_env.cr.border = '#d55c9a';
ss_env.cr.borderactive = '#ff6cb7';
ss_env.imgprefix = 'http://www.viafriend.com/images';
ss_env.defaultheight = 20;
ss_env.buttonwidth = 13;
ss_env.optionsdivstyle = ''
 + ' display:none;'
 + ' z-index:10;'
 + ' position:absolute;'
 + ' border:1 solid '+ ss_env.cr.border+';'
 + ' background-color:white;'
 + ' scrollbar-face-color:#d4d0c8;'
 + ' scrollbar-shadow-color:white;'
 + ' scrollbar-highlight-color:#f6f5f4;'
 + ' scrollbar-3dlight-color:white'
 + ' scrollbar-darkshadow-color:#86837e;'
 + ' scrollbar-track-color:#f6f5f4;'
 + ' scrollbar-arrow-color:#86837e;';
ss_env.optionnobrstyle = ''
 + ' font-size:12px;'
 + ' font-family:奔覆;';
// sayselect variables
var ss_var = new object();
ss_var.divdummy = document.createelement("div");
ss_var.selectlist = new array();
ss_var.beventattached = false;

var ss_createdelements = new object();

function unloadobjects()
{
 try {
  if (ss_var && ss_var.selectlist)
  {
   for (key in ss_var.selectlist)
   {
if (ss_var.selectlist[key])
{
 try {
  ss_var.selectlist[key].select.setattribute('ss', 0);
 } catch (e) {};
 delete ss_var.selectlist[key];
}
   }
  }
 } catch (e) {};
}

attachevent("onunload", unloadobjects);

function ss_create (srchtml, listmax, bautodetect)
{
 // property
 this.ssid = ss_var.selectlist.length;
 this.boriginalselect = (bautodetect && ss_env.ie_version < 5.5);
 this.select = ss_createelement(srchtml);
 this.selectedindex = this.select.selectedindex;
 this.options = this.select.options;
 this.width = parseint(this.select.style.width);
 this.height = (this.select.style.height) ? parseint(this.select.style.height) : ss_env.defaultheight;
 this.optionheight = this.height - 4;
 this.blistdown = (listmax && '-'==listmax.tostring().substr(0, 1)) ? false : true;
 this.listmax = (!isnan(parseint(listmax))) ? math.abs(listmax) : 100;

 this.table;
 this.titlediv;
 this.titletable;
 this.titlewrapper;
 this.optionsdiv;
 this.optionswrapper;
 this.optionstable;
 this.bfocused = false;
 this.bexpanded = false;
 this.breverse = false;

 // private method
 this.isthiseventtobecanceled = ss_isthiseventtobecanceled;
 this.toggletitle = ss_toggletitle;
 this.syncselectedindex = ss_syncselectedindex;
 this.toggleoptions = ss_toggleoptions;
 this.turnonoption = ss_turnonoption;
 this.turnoffoption = ss_turnoffoption;
 this.handlemousewheel = ss_handlemousewheel;
 this.handleovertitle = ss_handleovertitle;
 this.handleouttitle = ss_handleouttitle;
 this.handleoveroption = ss_handleoveroption;
 this.createtable = ss_createtable;
 this.createtitlediv = ss_createtitlediv;
 this.createoptionsdiv = ss_createoptionsdiv;
 this.createoptiontr = ss_createoptiontr;
 this.adjustoptionsdiv = ss_adjustoptionsdiv;
 this.syncoptions = ss_syncoptions;
 this.pressoption = ss_pressoption;
 this.moveoption = ss_moveoption;
 this.releaseoption = ss_releaseoption;
 this.presstitle = ss_presstitle;
 this.releasetitle = ss_releasetitle;

 // public method
 this.display = ss_display;
 this.insertoption = ss_insertoption;
 this.deleteoption = ss_deleteoption;
 this.changeoption = ss_changeoption;

 // initiate
 this.createtable();
 this.select.setattribute('ss', this);
 if (!this.boriginalselect)
  this.select.onpropertychange = ss_handlepropertychange;
 ss_var.selectlist[this.ssid] = this;
}
function ss_display ()
{
 document.write("<div id=ss_tempdiv></div>\n");
 document.all.ss_tempdiv.appendchild(this.table);
 document.all.ss_tempdiv.removenode();
}
function ss_write (srchtml, listmax, bautodetect)
{
 var oss = new ss_create(srchtml, listmax, bautodetect);
 oss.display();
 return oss;
}
function ss_insertoption (value, innertext, idx)
{
 var newoption = document.createelement("option");
 ss_createdelements[ss_createdelements.length] = newoption;
 this.options.add(newoption, idx);
 newoption.innertext = innertext;
 newoption.value = value;

 if (!this.boriginalselect)
  this.createoptiontr(idx);
 this.syncoptions();
 this.adjustoptionsdiv();
 this.syncselectedindex();
}
function ss_deleteoption (idx)
{
 this.options.remove(idx);
 if (!this.boriginalselect)
  this.optionstable.deleterow(idx);
 this.syncoptions();
 this.adjustoptionsdiv();
 this.syncselectedindex();
}
function ss_changeoption (idx, value, innertext)
{
 this.options[idx].value = value;
 this.options[idx].innertext = innertext;
 this.syncoptions();
 this.syncselectedindex();
}

function ss_cancelevent (event)
{
 event.cancelbubble = true;
 event.returnvalue = false;
}
function ss_isthiseventtobecanceled (event)
{
 if ('object' == typeof(event)) {
  switch (event.type) {
   case 'mousedown':
    if (!(event.button & 1)) return true;
    break;
   case 'mouseup':
    if (!(event.button & 1)) return true;
    if (ss_env.ie_version >= 5.5 && event.srcelement != this.srcelementoflastmousedown && this.srcelementoflastmousedown != null) {
     this.srcelementoflastmousedown = null;
     return true;
    }
    break;
   case 'mouseout':
    if (!(ss_env.ie_version < 5.5 && event.srcelement == this.srcelementoflastmousedown))
     return true;
    break;
   case 'mousemove':
    if (ss_env.ie_version >= 5.5 && event.srcelement != this.srcelementoflastmousedown && this.srcelementoflastmousedown != null)
     return true;
    break;
  }
 }
 return false;
}
function ss_createelement (html)
{
 ss_var.divdummy.insertadjacenthtml('afterbegin', html);
 var oel = ss_var.divdummy.children(0);
 while (ss_var.divdummy.children.length > 0) {
  ss_var.divdummy.removechild(ss_var.divdummy.children(0));
 }
 return oel;
}
function ss_blurexcept (except)
{
 ss_cancelevent(window.event);

 except = ('number'==typeof(except)) ? except : -1;

 var bhastodetachevent = true;
 for (var i=0; i < ss_var.selectlist.length; i++) {
  if (-1==except && ss_var.selectlist[i].bfocused && ss_var.selectlist[i].bexpanded) {
   ss_var.selectlist[i].toggleoptions(false, true);
   ss_var.selectlist[i].toggletitle(true);
   bhastodetachevent = false;
  }
  else if (i!=except) {
   if (ss_var.selectlist[i].bexpanded)
    ss_var.selectlist[i].toggleoptions(false, true);
   if (ss_var.selectlist[i].breverse)
    ss_var.selectlist[i].toggletitle(false);
   ss_var.selectlist[i].bfocused = false;
  }
 }

 if (ss_var.beventattached && bhastodetachevent) {
  document.detachevent('onmousedown', ss_blurexcept);
  document.detachevent('ondblclick', ss_blurexcept);
  ss_var.beventattached = false;
 }
}
function ss_syncselectedindex ()
{
 this.selectedindex = this.select.selectedindex;

 if (this.boriginalselect) return;

 if (this.titletable.cells(0).childnodes(0).innertext != this.options[this.selectedindex].innertext)
  this.titletable.cells(0).childnodes(0).innertext = this.options[this.selectedindex].innertext;
 if (this.bexpanded)
  this.toggleoptions(false);
}
function ss_toggletitle (breverse)
{
 this.breverse = ('undefined'!=typeof(breverse)) ? breverse: (!this.breverse);
 this.titletable.cells(0).style.backgroundcolor = this.breverse ? ss_env.cr.reversebackground : '';
 this.titletable.cells(0).style.color = this.breverse ? ss_env.cr.reversetext : '';
}
function ss_toggleoptions (bexpanded, bstrict)
{
 if (!bstrict && !this.bfocused) {
  ss_blurexcept(this.ssid);
 }
 this.bexpanded = ('undefined'!=typeof(bexpanded)) ? bexpanded: (!this.bexpanded);
 if (this.bexpanded) {
  this.adjustoptionsdiv();
  this.optionsdiv.style.display = 'block';
  if (!bstrict) {
   this.toggletitle(false);
   this.handleoveroption(this.selectedindex);
  }
  this.handleouttitle();
 }
 else {
  this.optionsdiv.style.display = 'none';
  if (!bstrict) {
   this.toggletitle(true);
  }
 }
 if (!bstrict) {
  this.bfocused = true;

  if (!ss_var.beventattached) {
   document.attachevent('onmousedown', ss_blurexcept);
   document.attachevent('ondblclick', ss_blurexcept);
   ss_var.beventattached = true;
  }
 }
}
function ss_handlepropertychange ()
{
 if ('propertychange'==window.event.type && 'selectedindex'==window.event.propertyname) {
  var oss = window.event.srcelement.ss;
  oss.syncselectedindex();

  if (null != oss.select.onchange)
   oss.select.onchange();
 }
}
function ss_handlemousewheel (event)
{
 var idx = this.selectedindex;
 if ('mousewheel'==event.type && this.bfocused && this.breverse) {
  for (var i=0; i < event.wheeldelta; i += 120)
   idx--;
  for (var i=0; i > event.wheeldelta; i -= 120)
   idx++;
 }
 idx = math.max(idx, 0);
 idx = math.min(idx, this.options.length - 1);
 this.select.selectedindex = idx;
}
function ss_handleovertitle ()
{
 if (this.bexpanded)
  return;

 this.titletable.style.bordercolor = ss_env.cr.borderactive;
 this.titletable.cells(1).style.display = 'none';
 this.titletable.cells(2).style.display = 'block';
}
function ss_handleouttitle ()
{
 this.titletable.style.bordercolor = ss_env.cr.border;
 this.titletable.cells(2).style.display = 'none';
 this.titletable.cells(1).style.display = 'block';
}
function ss_handleoveroption (idx)
{
 for (var i=0; i < this.options.length; i++) {
  if (i==idx)
   this.turnonoption(i);
  else
   this.turnoffoption(i);
 }
}
function ss_turnonoption (idx)
{
 this.optionstable.cells(idx).style.color = ss_env.cr.reversetext;
 this.optionstable.cells(idx).style.backgroundcolor = ss_env.cr.reversebackground;
}
function ss_turnoffoption (idx)
{
 this.optionstable.cells(idx).style.color = '';
 this.optionstable.cells(idx).style.backgroundcolor = '';
}
function ss_adjustoptionsdiv ()
{
 if (this.boriginalselect) return;

 this.optionsdiv.style.width = this.width;
 this.optionsdiv.style.height = math.min(this.options.length, this.listmax) * this.optionheight + 2;
 this.optionswrapper.style.height = this.options.length * this.optionheight;
 this.optionsdiv.style.overflowy = (this.options.length > this.listmax) ? 'scroll' : '';

 var top = this.table.offsettop;
 var left = this.table.offsetleft;
 for (var el = this.table.offsetparent; 'body'!=el.tagname && 'absolute'!=el.style.position && 'relative'!=el.style.position; el = el.offsetparent) {
  if ('table' != el.tagname) {
   top += el.clienttop;
   left += el.clientleft;
  }
  top += el.offsettop;
  left += el.offsetleft;
 }
 this.optionsdiv.style.top = (this.blistdown) ? (top + this.height) : (top - parseint(this.optionsdiv.style.height));
 this.optionsdiv.style.left = left;

 this.titlewrapper.style.top = 0;
 this.titlewrapper.style.left = 0;
}
function ss_syncoptions ()
{
 if (this.boriginalselect) return;

 for (var i=0; i < this.options.length; i++) {
  this.optionstable.cells(i).setattribute('index', i);
  if (this.optionstable.cells(i).childnodes(0).innertext != this.options[i].innertext)
   this.optionstable.cells(i).childnodes(0).innertext = this.options[i].innertext;
 }
}
function ss_presstitle (event)
{
 ss_cancelevent(event);

 this.srcelementoflastmousedown = event.srcelement;

 this.toggleoptions();
}
function ss_releasetitle (event)
{
 ss_cancelevent(event);

 if (this.isthiseventtobecanceled(event)) return;

 this.srcelementoflastmousedown = null;
}
function ss_pressoption (event)
{
 ss_cancelevent(event);

 this.srcelementoflastmousedown = event.srcelement;
}
function ss_moveoption (event)
{
 ss_cancelevent(event);

 if (this.isthiseventtobecanceled(event)) return;
 if (!(event.offsetx >= 0 && event.offsetx <= this.optionstable.offsetwidth)) return;

 this.handleoveroption(math.floor(event.offsety / this.optionheight));
}
function ss_releaseoption (event)
{
 ss_cancelevent(event);

 if (this.isthiseventtobecanceled(event)) return;

 this.srcelementoflastmousedown = null;

 if (event.offsetx >= 0 && event.offsetx <= this.optionstable.offsetwidth) {
  this.toggleoptions(false);
  this.select.selectedindex = math.floor(event.offsety / this.optionheight);
 }
}
function ss_createtable ()
{
 this.table = ss_createelement(""
  + "<table border=0 cellpadding=0 cellspacing=0 style='table-layout:fixed; cursor:default'>"
  + "<tr><td></td></tr>"
  + "</table>"
 );
 if (!isnan(this.width))
  this.table.style.width = this.width;
 this.table.style.height = this.height;

 if (!this.boriginalselect) {
  this.createtitlediv();
  this.createoptionsdiv();
  this.table.cells(0).appendchild(this.titlediv);
  this.table.cells(0).appendchild(this.optionsdiv);
 }
 else {
  this.table.cells(0).appendchild(this.select);
 }
}
function ss_createtitlediv ()
{
 this.titlediv = ss_createelement(""
  + "<div style='position:relative; top:0; left:0;'>"
  + " <table border=0 cellpadding=0 cellspacing=1"
  + "  height="+this.height
  + "  bgcolor=white"
  + "  style='table-layout:fixed; border:1 solid "+ss_env.cr.border+";'"
  + "  onmouseover='ss_var.selectlist["+this.ssid+"].adjustoptionsdiv()'"
  + " >"
  + " <tr>"
  + "  <td><nobr style='text-oveflow:hidden;"+ss_env.optionnobrstyle+"'></nobr></td>"
  + "  <td width="+ss_env.buttonwidth+" align=center style='word-wrap:normal'></td>"
  + "  <td style='display:none' width="+ss_env.buttonwidth+" align=center style='word-wrap:normal'></td>"
  + "  <td style='display:none'></td>"
  + " </tr>"
  + " </table>"
  + "</div>"
 );
 this.titletable = this.titlediv.childnodes(0);
 this.titletable.cells(0).childnodes(0).innertext = this.options[this.selectedindex].innertext;
 this.titletable.cells(1).innerhtml = "<img src="http://www.iyit.net/files/beyondpic/2006-5/5/065510254959326.gif" border=0 align=absmiddle>";
 this.titletable.cells(2).innerhtml = "<img src="http://www.iyit.net/files/beyondpic/2006-5/5/065510254989768.gif" border=0 align=absmiddle>";
 this.titletable.cells(3).appendchild(this.select);
 this.titlewrapper = document.createelement(""
  + "<img src="http://www.iyit.net/files/beyondpic/2006-5/5/065510255038048.gif""
  + " style='position:absolute; top:0; left:0; z-index:2; width:100%; height:"+this.height+";'"
  + " onmouseover='ss_var.selectlist["+this.ssid+"].handleovertitle()'"
  + " onmouseout='ss_var.selectlist["+this.ssid+"].handleouttitle(); ss_var.selectlist["+this.ssid+"].releasetitle(window.event);'"
  + " onmousedown='ss_var.selectlist["+this.ssid+"].presstitle(window.event)'"
  + " ondblclick='ss_var.selectlist["+this.ssid+"].presstitle(window.event); ss_var.selectlist["+this.ssid+"].releasetitle(window.event);'"
  + " onmouseup='ss_var.selectlist["+this.ssid+"].releasetitle(window.event)'"
  + " onmousewheel='ss_var.selectlist["+this.ssid+"].handlemousewheel(window.event)'"
  + " ondragstart='ss_cancelevent(window.event)'"
  + ">"
 );
 ss_createdelements[ss_createdelements.length] = this.titlewrapper;
 this.titlediv.appendchild(this.titlewrapper);
}
function ss_createoptionsdiv ()
{
 this.optionsdiv = ss_createelement(""
  + "<div style='"+ss_env.optionsdivstyle+"'"
  + " onscroll='ss_var.selectlist["+this.ssid+"].moveoption(window.event)'"
  + " onmousedown='ss_cancelevent(window.event)'"
  + ">"
  + " <table border=0 cellpadding=0 cellspacing=0 width=100% style='table-layout:fixed'>"
  + " </table>"
  + "</div>"
 );
 this.optionstable = this.optionsdiv.childnodes(0);
 for (var i=0; i < this.options.length; i++) {
  this.createoptiontr(i);
 }
 this.syncoptions();
 this.optionswrapper = document.createelement(""
  + "<img src="http://www.iyit.net/files/beyondpic/2006-5/5/065510255038048.gif""
  + " style='position:absolute; top:0; left:0; width:100%;'"
  + " onmousedown='ss_var.selectlist["+this.ssid+"].pressoption(window.event)'"
  + " onmousemove='ss_var.selectlist["+this.ssid+"].moveoption(window.event)'"
  + " onmouseup='ss_var.selectlist["+this.ssid+"].releaseoption(window.event)'"
  + " onmouseout='ss_var.selectlist["+this.ssid+"].releaseoption(window.event)'"
  + " ondragstart='ss_cancelevent(window.event)'"
  + ">"
 );
 ss_createdelements[ss_createdelements.length] = this.optionswrapper;
 this.optionsdiv.appendchild(this.optionswrapper);
}
function ss_createoptiontr (idx)
{
 idx = ('undefined'!=typeof(idx)) ? idx : this.options.length - 1;
 var optiontr = this.optionstable.insertrow(-1);
 var optiontd = document.createelement("<td height="+this.optionheight+"></td>");
 ss_createdelements[ss_createdelements.length] = this.optionstd;
 optiontd.appendchild(document.createelement("<nobr style='"+ss_env.optionnobrstyle+"'></nobr>"));
 optiontr.appendchild(optiontd);
}
</script>
</head>
<body><script>ss_write("<select style='width:60;height:18px;font-size:12px' name=star>\n"
   +" <option value=\"\" selected>不限</option>\n"
+"<option value=\"水瓶座\">水瓶座</option>"
+"<option value=\"双鱼座\">双鱼座</option>"
+"<option value=\"白羊座\">白羊座</option>"
+"<option value=\"金牛座\">金牛座</option>"
+"<option value=\"双子座\">双子座</option>"
+"<option value=\"巨蟹座\">巨蟹座</option>"
+"<option value=\"狮子座\">狮子座</option>"
+"<option value=\"处女座\">处女座</option>"
+"<option value=\"天秤座\">天秤座</option>"
+"<option value=\"天蝎座\">天蝎座</option>"
+"<option value=\"射手座\">射手座</option>"
+"<option value=\"摩羯座\">摩羯座</option>"
   +"</select>\n");
</script><br>
<script>ss_write("<select name='province' style='width:60;height:18px;font-size:12px'>\n"
+"<option value=\"\" selected>都行</option>\n"
+"<option value=\"北京\">北京</option>"
+"<option value=\"上海\">上海</option>"
+"<option value=\"天津\">天津</option>"
+"<option value=\"重庆\">重庆</option>"
+"<option value=\"安徽\">安徽</option>"
+"<option value=\"福建\">福建</option>"
+"<option value=\"甘肃\">甘肃</option>"
+"<option value=\"广东\">广东</option>"
+"<option value=\"广西\">广西</option>"
+"<option value=\"贵州\">贵州</option>"
+"<option value=\"海南\">海南</option>"
+"<option value=\"河北\">河北</option>"
+"<option value=\"黑龙江\">黑龙江</option>"
+"<option value=\"河南\">河南</option>"
+"<option value=\"湖北\">湖北</option>"
+"<option value=\"湖南\">湖南</option>"
+"<option value=\"内蒙古\">内蒙古</option>"
+"<option value=\"江苏\">江苏</option>"
+"<option value=\"江西\">江西</option>"
+"<option value=\"吉林\">吉林</option>"
+"<option value=\"辽宁\">辽宁</option>"
+"<option value=\"宁夏\">宁夏</option>"
+"<option value=\"青海\">青海</option>"
+"<option value=\"山西\">山西</option>"
+"<option value=\"陕西\">陕西</option>"
+"<option value=\"山东\">山东</option>"
+"<option value=\"四川\">四川</option>"
+"<option value=\"江西\">江西</option>"
+"<option value=\"西藏\">西藏</option>"
+"<option value=\"新疆\">新疆</option>"
+"<option value=\"云南\">云南</option>"
+"<option value=\"浙江\">浙江</option>"
+"<option value=\"其它\">其它</option>"
   +"</select>\n",8); </script>
</body>
</html>



编辑:黑鹰 [发送给好友] [打印本页] [关闭窗口] [返回顶部]
上一篇:javascript 对象与数组参考大全
下一篇:msagent 详细解说(一)
转载请注明来源:www.iyit.net
特别声明: 本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系编辑人员,我们尽快予以更正。

 相关文章
最新更新 热点排行 推荐新闻
去除dw mx 2004表格宽度辅助
驯服不听话的网页表格
dw mx 2004代码编辑新功能
细品dw mx 2004内建fw技术
用 javascript 写的一个映射表类
ajax的七宗罪
驳“ajax 的七宗罪”
javascript 实用的一些技巧 
奇妙的javascript图片放大镜
网页制作技巧24条
网页保存另类技巧3则
设计高手进阶技巧:用记事本编辑网页
高手传经 网页设计中的几个小技巧
从美的原则谈网页上的艺术表现:美的原
传统二维动画和flash动画的比较
去除dw mx 2004表格宽度辅助
驯服不听话的网页表格
dw mx 2004代码编辑新功能
细品dw mx 2004内建fw技术
用 javascript 写的一个映射表类
qq珊瑚虫外挂4.0版本发布!
多个广告位招商!
摄影后期系列一:1分钟为数码相片去红眼
教您显示器亮度对比度的调节
qq挂机说明
asp进度条
photoshop通道抠图:给秀发飞扬的mm照
新版上线,今日正式开通!!!
更多精彩图文广告等着您!
免费在qq上看在线电影电视听音乐
第二十章 开发delphi对象式数据管理功
sql简明教程(1)
vbscript和javascript互相调用 
jsp教程(四)-jsp actions的使用
操作系统被入侵后的修复过程
五一别忘电脑防毒 养成良好上网习惯
google对ie浏览器将捆绑搜索功能表担忧
新版上线,今日正式开通!!!
用photoshop创意图形“岁月”
摄影后期系列一:1分钟为数码相片去红眼

 友情链接
设置首 页 - 版权声明 - 广告服务 - 关于我们 - 联系我们 - 友情连接
copyrights © 2004-2006 iyit.net all rights reserved.
网站合作、广告联系qq:147007642、466949678
易特网络技术 点击这里给我发消息