24 lines
901 B
HTML
24 lines
901 B
HTML
<html>
|
|
<head>
|
|
<title>CHEditor Lightbox 데모</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
|
|
|
|
<!-- imageUtil.js 파일의 위치를 지정합니다. -->
|
|
<script type="text/javascript" src="imageUtil.js"></script>
|
|
|
|
<!-- lightbox.js 파일의 위치를 지정합니다. -->
|
|
<!-- lightbox.js 파일에 설정되어 있는 cheditorPath 경로를 수정해 주십시오. -->
|
|
<script type="text/javascript" src="lightbox.js"></script>
|
|
</head>
|
|
<body>
|
|
<h4>이미지를 클릭하면 확대하실 수 있습니다.</h4>
|
|
<h4>확대한 후 이미지를 원하는 위치로 잡아 끌 수 있습니다.</h4>
|
|
<!-- lightbox 컨테이너 개체: 화면에 출력되지 않습니다. -->
|
|
<div id="lightbox-container"></div>
|
|
|
|
<p>
|
|
<img class="chimg_photo" src="sample.jpg" alt="라이트박스 데모입니다." height="200" width="300">
|
|
</p>
|
|
</body>
|
|
</html>
|