IE&中的文件按钮问题火狐

时间:2014-09-29 06:30:49

标签: javascript html css

我在Firefox和IE中设置了文件按钮的样式。它在Chrome中运行良好。

File button and normal button in Firefox and IE

CSS

    .custom-file-input { background-color:#44c767;-moz-border-radius:28px;-webkit-border-radius:28px;border-radius:28px; border:1px solid #18ab29;display:inline-block;cursor:pointer;
        color:#ffffff;font-family:arial;font-size:17px;padding:16px 31px;text-decoration:none;text-shadow:0px 1px 0px #2f6627; }
    .custom-file-input:hover { background-color:#5cbf2a; }
    .custom-file-input:active { position:relative; top:1px; }

    .custom-file-input::-webkit-file-upload-button { visibility: hidden; }
    .custom-file-input::before { content: 'Upload';outline: none; white-space: nowrap;-webkit-user-select: none;cursor: pointer;font-size: 11pt; }
    input[type="file"] { width: 11%; height:55px; float:left; }
    input[type="button"] { overflow:hidden; }

HTML

     <input type="file" id="imgModalBanner" class="custom-file-input" value="Upload" onchange="readURL(this)" />
     <input type="button" id="btnFinish" class="custom-file-input" value="Finish" />

3 个答案:

答案 0 :(得分:0)

而不是input尝试button

<input type="file" id="imgModalBanner" class="custom-file-input" value="Upload" onchange="readURL(this)" />

更改为

<button type="file" id="imgModalBanner" class="custom-file-input" value="Upload" onchange="readURL(this)" />

这是工作小提琴,它适用于Mozilla和IE9 Enjoy!

http://jsfiddle.net/jnzy8gs7/4/

答案 1 :(得分:0)

你也可以尝试这个

<label class="add-photo-btn">
        upload
        <span>
            <input type="file" id="myfile" name="myfile" />
        </span>
</label>

input[type="file"]{
    z-index: 999;
    line-height: 0;
    font-size: 50px;
    position: absolute;
    opacity: 0;
    filter: alpha(opacity = 0);-ms-filter: "alpha(opacity=0)";
    cursor: pointer;
    _cursor: hand;
    margin: 0;
    padding:0;
    left:0;
}

.add-photo-btn{
    position:relative;
    overflow:hidden;
    cursor:pointer;
    text-align:center;
    background-color:#83b81a;
    color:#fff;display:block;
    width:197px;
    height:31px;
    font-size:18px;
    line-height:30px;
    float:left;
}

工作小提琴

http://jsfiddle.net/JJRrc/1324/

答案 2 :(得分:0)

我得到了解决方案。

<强> HTML

<label class="custom-file-input">
Upload
<span>
<input type="file" id="myfile" name="myfile" onchange="readURL(this)" />
</span>
</label>
<input type="button" id="btnFinish" class="custom-file-input" value="Finish" />

<强> CSS

.custom-file-input { 
background-color:#44c767;
-moz-border-radius:28px;
-webkit-border-radius:28px;
border-radius:28px; 
border:1px solid #18ab29;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:arial;
font-size:17px;
padding:16px 31px;
text-decoration:none;
text-shadow:0px 1px 0px #2f6627; 
}
.custom-file-input:hover {
     background-color:#5cbf2a;
}
.custom-file-input:active { 
position:relative;
top:1px; 
}
.custom-file-input::-webkit-file-upload-button { 
visibility: hidden; 
}
.custom-file-input::before { 
/*content: 'Upload';*/
outline: none; 
white-space: nowrap;
-webkit-user-select: none;
cursor: pointer;
font-size: 11pt; 
}
input[type="file"] {
width: 11%; 
height:55px; 
float:left; 
display:block;
}
input[type="button"] { 
overflow:hidden;
}
input[type="file"]{
z-index: 999;
line-height: 0;
font-size: 50px;
position: absolute;
opacity: 0;
filter: alpha(opacity = 0);-ms-filter: "alpha(opacity=0)";
cursor: pointer;
_cursor: hand;
margin: 0;
padding:0;
left:0;
}

工作小提琴位于jsfiddle.net/8g6rw492

相关问题