input[type=file]使用css美化效果

antzone發表於2017-04-02

本章節分享一段程式碼例項,它實現了對於上傳控制元件的簡單美化效果。

程式碼非常的簡單,需要的朋友可以做一下參考。

程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html> 
<head> 
<meta name="author" content="http://www.softwhy.com/" /> 
<meta charset="gb2312">
<title>螞蟻部落</title>
<style type="text/css">
.a-upload{
  padding: 4px 10px;
  height: 20px;
  line-height: 20px;
  position: relative;
  cursor: pointer;
  color: #888;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  text-decoration:none;
} 
.a-upload  input{
  position: absolute;
  font-size: 100px;
  right: 0;
  top: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  cursor: pointer
} 
.a-upload:hover {
  color: #444;
  background: #eee;
  border-color: #ccc;
  text-decoration: none
}
</style>
</head>
<body>
<a href="javascript:;" class="a-upload">
<input type="file" name="" id="">點選上傳檔案
</a>
</body>
</html>

相關文章