| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <style>
- #layui-upload-box li{
- width: 120px;
- height: 100px;
- float: left;
- position: relative;
- overflow: hidden;
- margin-right: 10px;
- border:1px solid #ddd;
- }
- #layui-upload-box li img{
- width: 100%;
- }
- #layui-upload-box li p{
- width: 100%;
- height: 22px;
- font-size: 12px;
- position: absolute;
- left: 0;
- bottom: 0;
- line-height: 22px;
- text-align: center;
- color: #fff;
- background-color: #333;
- opacity: 0.6;
- }
- #layui-upload-box li i{
- display: block;
- width: 20px;
- height:20px;
- position: absolute;
- text-align: center;
- top: 2px;
- right:2px;
- z-index:999;
- cursor: pointer;
- }
- #layui-select{
- text-align: center;
- height: 38px;
- line-height: 1.3;
- line-height: 38px\9;
- border-width: 1px;
- border-style: solid;
- background-color: #fff;
- border-radius: 2px;
- }
- </style>
- <script>
- layui.use(['upload'],function () {
- var upload = layui.upload
- //普通图片上传
- var uploadInst = upload.render({
- elem: '#uploadPic'
- ,url: '{{ route("uploadImg") }}'
- ,multiple: false
- ,data:{"_token":"{{ csrf_token() }}"}
- ,before: function(obj){
- //预读本地文件示例,不支持ie8
- /*obj.preview(function(index, file, result){
- $('#layui-upload-box').append('<li><img src="'+result+'" /><p>待上传</p></li>')
- });*/
- obj.preview(function(index, file, result){
- $('#layui-upload-box').html('<li><img src="'+result+'" /><p>上传中</p></li>')
- });
- }
- ,done: function(res){
- //如果上传失败
- if(res.code == 0){
- $("#avatar").val(res.url);
- $('#layui-upload-box li p').text('上传成功');
- return layer.msg(res.msg,{icon:6});
- }
- return layer.msg(res.msg,{icon:5});
- }
- });
- });
- </script>
|