<input type="file">美化效果程式碼例項

antzone發表於2017-04-04

關於<input type="file">這裡就不介紹了,大家應該都不會陌生。

但是它預設的樣式實在是醜陋,難登大雅之堂,下面就分享一段程式碼例項,它實現了對此控制元件的美化效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.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
}
 
.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">點選這裡上傳檔案
</a>
</body>
</html>

相關文章