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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<? include("./include/header.php"); ?> <!--메인페이지 상단서브메뉴바--> <div class="sub_menu"> <ul> <li><a href="./company.php">회사소개</a></li>l <li><a href="./product.php">제품소개</a></li>l <li><a href="http://mjsoft.co/html/millennium/buyhwbest.php?pcver=1">하드웨어</a></li> </ul> </div> </div>
<!--TAP MENU--> <div class="product" style="width:100%;text-align:center;"> <p><img src="./images/product/product_title.png" style="max-width:100%;" alt="제품소개"></p> <p><a href="./product_page_millennium.php"><img src="./images/product/product_intro01.png" style="max-width:100%;" alt="천년경영3"></a></p> <p><a href="./product_page_smart.php"><img src="./images/product/product_intro02.png" style="max-width:100%;background:#ebf9ff;" alt="스마트폰"></a></p> <p><a href="./product_page_pda.php"><img src="./images/product/product_intro03.png" style="max-width:100%;" alt="pda"></a></p> <p><a href="./product_spos.php"><img src="./images/product/product_intro04.png" style="max-width:100%;background:#f1f5f8;" alt="pos"></a></p> <p><a href="./product_tax.php"><img src="./images/product/product_intro05.png" style="max-width:100%;" alt="전자계산서"></a></p> <p><a href="http://www.ebizmall.co.kr/" target="_blank"><img src="./images/product/product_intro06.png" style="max-width:100%;background:#f3f2ff;" alt="쇼핑몰"></a></p> </div>
<? include("./include/footer.php"); ?>
<script> //탭메뉴
var slideIndex = 1; showSlides(slideIndex);
function plusSlides(n) { showSlides(slideIndex += n); }
function currentSlide(n) { showSlides(slideIndex = n); }
function showSlides(n) { var i; var slides = document.getElementsByClassName("company"); var dots = document.getElementsByClassName("demo"); var captionText = document.getElementById("caption"); if (n > slides.length) {slideIndex = 1} if (n < 1) {slideIndex = slides.length} for (i = 0; i < slides.length; i++) { slides[i].style.display = "none"; } for (i = 0; i < dots.length; i++) { dots[i].className = dots[i].className.replace(" active", ""); } slides[slideIndex-1].style.display = "block"; dots[slideIndex-1].className += " active"; captionText.innerHTML = dots[slideIndex-1].alt; }
</script>
|