2013-02-08 21:54:31 html form input file上传表单美化file按钮美化篇,通过实例图文方式介绍file美化,并提供源文件和图片下载。
表单上传控件form input file样式美化篇
一、表单input file样式说明
本上传表单特效是使用纯DIV+CSS代码实现,兼容各大浏览器,使用方便在此美化基础上稍加CSS美化将获得更好的美化效果,也就是通过DIV CSS样式美化上传表单控件。
二、CSS file美化后效果图
file表单美化效果图
支持多浏览器与老旧版本浏览器,测试IE6-IE8 火狐、谷歌浏览器均兼容。
三、所有HTML+CSS代码:
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <title>input file上传表单案例</title>
- <style type="text/css">
- <!--
- * { font-size:12px; }
- body { margin:0; }
- input { border:0; padding:0; margin:0; }
- .div { margin:0 auto; width:100%; overflow:hidden; padding:20px 0; }
- .line { position:relative; margin:0 auto; width:300px; text-align:left }
- .line span.span { float:left; padding-top:2px; }
- .file { position:absolute; left:0; width:250px; top:0;
height:28px; filter:alpha(opacity=0); opacity:0; cursor: pointer }- .file1 { float:left; margin-left:8px; z-index:1; width:66px;
height:28px; line-height:28px; background:url(liulan.gif) no-repeat 0 0;
text-indent:-9999px; cursor: pointer }- .inputstyle { border:1px solid #BEBEBE; width:170px; float:left;
height:23px; line-height:23px; background:#FFF; z-index:99 }- -->
- </style>
- </head>
- <body>
- <div class="div">
- <div class="line">
- <span class="span">
- <input name="" type="text" id="viewfile"
onmouseout="document.getElementById('upload').style.display='none';"
class="inputstyle" />- </span>
- <label for="unload"
onmouseover="document.getElementById('upload').style.display='block';"
class="file1">浏览...</label>- <input type="file"
onchange="document.getElementById('viewfile').value=this.value;this.style.display='none';"
class="file" id="upload" />- </div>
- </div>
- </body>
- </html>
四、input file使用说明
这里对file上传表单美化使用图片,如果需要不同美化效果,可根据以上CSS和对应HTML代码进行简单修改即可达到自己想要css美化input file按钮效果。可以修改按钮图片和CSS进行灵活应用。
在线样式://www.html8.com.cn/yanshi/2013020801/
五、源代码打包下载
扩展阅读:
html input教程
html form表单教程
html textarea教程
html input按钮
html select下拉列表菜单
select跳转菜单