67 lines
2.9 KiB
HTML
67 lines
2.9 KiB
HTML
<!DOCTYPE HTML>
|
|
<html lang="ko">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
|
|
<title>사진 첨부하기 :: SmartEditor2</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<!-- Generic page styles -->
|
|
<link rel="stylesheet" href="css/style.css?v=140715">
|
|
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
|
<link rel="stylesheet" href="css/jquery.fileupload.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container pop_container">
|
|
<!-- header -->
|
|
<div id="pop_header">
|
|
<h1>사진 첨부하기</h1>
|
|
</div>
|
|
<!-- //header -->
|
|
<div class="content_container">
|
|
<div class="drag_explain">
|
|
<p>마우스로 드래그하여 순서를 바꿀수 있습니다.</p>
|
|
<div class="file_selet_group">
|
|
<span class="btn btn-success fileinput-button">
|
|
<span>파일선택</span>
|
|
<!-- The file input field used as target for the file upload widget -->
|
|
<input id="fileupload" type="file" name="files[]" multiple accept="image/*">
|
|
</span>
|
|
<button type="button" class="btn btn-danger delete" id="all_remove_btn">
|
|
<span>전체삭제</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="drag_area" id="drag_area">
|
|
<ul class="sortable" id="sortable">
|
|
</ul>
|
|
<em class="blind">마우스로 드래그해서 이미지를 추가해주세요.</em><span id="guide_text" class="bg hidebg"></span>
|
|
</div>
|
|
<div class="seletion_explain">이미지는 한번에 10개까지 선택할수 있습니다. 움직이는 webp 이미지는 업로드 불가합니다.</div>
|
|
<div class="btn_group">
|
|
<button type="button" class="btn" id="img_upload_submit">
|
|
<span>등록</span>
|
|
</button>
|
|
<button type="button" class="btn" id="close_w_btn">
|
|
<span>취소</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
|
|
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
|
|
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
|
<script src="./js/jquery.iframe-transport.js"></script>
|
|
|
|
<script type="text/javascript" src="./swfupload/swfupload.js?v=210625-1329"></script>
|
|
<script type="text/javascript" src="./swfupload/jquery.swfupload.js?v=210625-1329"></script>
|
|
|
|
<!-- The basic File Upload plugin -->
|
|
<script src="./js/jquery.fileupload.js?v=210625-1329"></script>
|
|
|
|
<script src="./js/basic.js?v=210625-1329"></script>
|
|
</body>
|
|
|
|
</html> |