1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php include_once("../../_common.php"); ?> <div class="futurico-theme"> <div id="slider" class="viewSlider"> <img src="./include/software/images/cinelife01.jpg" alt="01. ´ë¿©¹Ý³³°ü¸®" title="#caption1"> <img src="./include/software/images/cinelife02.jpg" alt="02. »óǰµî·Ï°ü¸®" title="#caption2"> <img src="./include/software/images/cinelife03.jpg" alt="03. ¹Ì¹Ý³³ÇöȲ" title="#caption3"> <img src="./include/software/images/cinelife04.jpg" alt="04. ´ë¿©ÇöȲ" title="#caption4"> <img src="./include/software/images/cinelife05.jpg" alt="05. ´ë¿©È¸¼öÇöȲ" title="#caption5"> <img src="./include/software/images/cinelife06.jpg" alt="06. °í°´°ü¸®" title="#caption6"> <img src="./include/software/images/cinelife07.jpg" alt="07. ¹®ÀÚÀü¼Û" title="#caption7"> <img src="./include/software/images/cinelife08.jpg" alt="08. ¼±ºÒ±Ý°ü¸®" title="#caption8"> <img src="./include/software/images/cinelife09.jpg" alt="09. ¿¹¾àÇöȲ" title="#caption9"> <img src="./include/software/images/cinelife10.jpg" alt="10. ½ºÄÉÁÙ°ü¸®" title="#caption10"> <img src="./include/software/images/cinelife11.jpg" alt="11. ÁÖº¯Àåºñ" title="#caption11"> </div>
<div id="caption1" class="view-html-caption"><em>1. ´ë¿©¹Ý³³°ü¸®</em></div> <div id="caption2" class="view-html-caption"><em>2. »óǰµî·Ï°ü¸®</em></div> <div id="caption3" class="view-html-caption"><em>3. ¹Ì¹Ý³³ÇöȲ</em></div> <div id="caption4" class="view-html-caption"><em>4. ´ë¿©ÇöȲ</em></div> <div id="caption5" class="view-html-caption"><em>5. ´ë¿©È¸¼öÇöȲ</em></div> <div id="caption6" class="view-html-caption"><em>6. °í°´°ü¸®</em></div> <div id="caption7" class="view-html-caption"><em>7. ¹®ÀÚÀü¼Û</em></div> <div id="caption8" class="view-html-caption"><em>8. ¼±ºÒ±Ý°ü¸®</em></div> <div id="caption9" class="view-html-caption"><em>9. ¿¹¾àÇöȲ</em></div> <div id="caption10" class="view-html-caption"><em>10. ½ºÄÉÁÙ°ü¸®</em></div> <div id="caption11" class="view-html-caption"><em>11. ÁÖº¯Àåºñ</em></div> </div>
<!-- jQuery & view Slider --> <script src="./js/jquery.view.slider.pack.js"></script> <script> $(window).load(function() { $('#slider').viewSlider({ effect: 'random', directionNavHide: false, pauseOnHover: true, captionOpacity: 1, prevText: '<', nextText: '>' }); }); </script>
|