1.样式图片

2.css部分
- <style type="text/css">
- .input-file {
- display:inline-block;
- width:85px;
- height:20px;
- line-height:30px;
- background:#ddd;
- text-align:center;
- overflow:hidden;
- position:relative;
- background:url(images/hua_43.jpg);
- }
- .input-file:hover {
- background:url(images/hua_43.jpg);
- }
- .input-file input {
- opacity:0;
- filter:alpha(opacity=0);
- font-size:100px;
- position:absolute;
- top:0;
- right:0;
- }
复制代码 3.html嵌入
- <a href="javascript:void(0);" class="input-file"><input name='name' type='file' size='50' data-valid-name='图片' data-valid-empty='yes' data-valid-accept='jpg,jpeg,gif,png,bmp'></a>
复制代码
4.效果如下
|