如何美化input file 浏览框,效果如下_html/css_WEB-ITnose

CSS

如何用css写出这样的效果呢 求高手帮帮忙

回复讨论(解决方案)

画一个方框和一个按钮

绑定按钮的点击事件为触发file的点击事件

把file的onchange事件返回的文件名称设置到第一个方框里

以jquery为例

$(“#btn”).bind(“click”, function(e){
$(“#file”).trigger(“click”);
return false;
});

                $(“#img-file”).bind(“change”, function(){
//设置取到的文件名至第一个box
});

nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">file*{margin:0;padding:0;}body{font-size:12px; color:#333;}.box{margin:100px auto; width:400px; overflow:hidden; zoom:1;}.i-txt{width:320px; height:28px; line-height:28px; border:1px solid #eaeaea; float:left;}.i-file{ position:absolute; opacity:0; width:100%; height:100%; left:0; top:0;}.btnbox{ position:relative; float:right; background:url(btn.jpg) no-repeat; width:60px; height:30px;}
        
   

登录后复制

.i-file{ position:absolute; opacity:0; filter:Alpha(opacity=0); width:100%; height:100%; left:0; top:0;}  加多一句,兼容ie filter:alpha(…)

.messageTxt span.fileInputContainer{background:url(images/这里改成你自己的图片.jpg) no-repeat 0 8px;position:relative;width:57px;}
.fileInput{height:24px;overflow: hidden;font-size:300px;position:absolute;right:0;top:0;opacity: 0;filter:alpha(opacity=0);cursor:pointer;}

CSS:
.div1
{
 border:1px soild gray;
 padding:5px 5px 5px 5px;
}
.file
{
    border:1px soild gray;
}

 多谢各位的帮忙

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2842006.html

(0)
上一篇 2025年3月10日 05:29:07
下一篇 2025年3月10日 05:29:24

AD推荐 黄金广告位招租... 更多推荐

发表回复

登录后才能评论