input[type=file]使用css美化效果
本章節分享一段程式碼例項,它實現了對於上傳控制元件的簡單美化效果。
程式碼非常的簡單,需要的朋友可以做一下參考。
程式碼如下:
[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>
相關文章
- <input type="file">美化效果程式碼例項
- type=“file”的input標籤美化
- <input type="file">美化例項程式碼
- input type="file"使用
- 使用Input type=file 原生上傳使用總結
- input file美化 --上傳圖片
- 如何清除<input type="file">的值
- 給<input type="file">增加樣式
- <input type="file"> 限制檔案型別型別
- 美化<input type="range">控制元件程式碼例項控制元件
- <input type="file"> 選中多個檔案
- CSS 美化滑動輸入條 input rangeCSS
- utl_file.file_type使用
- js清空<input type="file">值程式碼例項JS
- jquery動態新增和刪除<input type="file" />jQuery
- input[type=file]不能選擇同一張圖片
- CSS3 checkbox美化效果CSSS3
- jQuery動態新增或刪除<input type="file">元素jQuery
- input框type=file設定cursor:pointer的問題
- input[type=file] 獲取上傳檔案的內容
- 修改input標籤type=file型別按鈕的值型別
- vue3中清空input type="file"上傳檔案Vue
- 如何獲取<input type="file">上傳的檔名稱
- Jquery使用[Input type="checkbox&jQuery
- JavaScript input type=file 獲取檔案大小及型別限制JavaScript型別
- HTML input type=file檔案選擇表單元素二三事HTML
- css匹配type屬性值為text的input元素CSS
- CSS3核取方塊打勾美化效果CSSS3
- react input[type='number']React
- 使用純 CSS 實現仿 Material Design 的 input 過渡效果CSSMaterial Design
- css設定type為text的input元素的樣式CSS
- 使用phpstudy出現No input file specifiedPHP
- css input文字框中的內容居中效果CSS
- CSS 控制 input 只顯示下劃線效果CSS
- CSS3 radio單選按鈕美化效果CSSS3
- JQuery獲取input type=jQuery
- input range美化程式碼例項
- 將input type="file" 型別的圖片檔案轉成base64型別