123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .jqfivefile{
- position: relative;
- margin-bottom: 10px;
- overflow: hidden;
- }
- .jqfivefile input{
- position: absolute;
- font-size: 100px;
- right: 0;
- top: 0;
- opacity: 0;
- filter:Alpha(opacity=0);
- cursor: pointer;
- }
- .imgsbox{
- width: 100%;
- overflow: hidden;
- }
- .imgsbox .imgbox{
- overflow: hidden;
- display: inline-block;
- position: relative;
- width: 80px;
- height: 80px;
- border: 1px solid #ccc;
- padding: 2px;
- margin: 0 5px 5px 0;
- }
- .imgsbox .imgbox img{
- width: 100%;
- height: 100%;
- }
- .imgsbox .imgbox .removePic{
- width: 24px;
- height: 24px;
- line-height: 24px;
- font-size: 20px;
- text-align: center;
- border-radius: 12px;
- background-color: #000;
- background-color: rgba(0,0,0,0.5);
- color: #fff;
- position: absolute;
- z-index: 10;
- right: 4px;
- top: 4px;
- cursor: pointer;
- }
|