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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
<?php Global $kword_list, $app_id; $cur_img_url = $j3_img_url."/".$sk['sk_img_path'];
$notice_list = notice_simple_get(1);
if($skin_css!=''){ echo $skin_css; } else { ?> <style> /* 메인 : 검색단 */ #hd_snb {height:71px;}
#hd_snb #hd_sch {position:absolute;left:32%;width:370px;} #hd_snb #hd_sch form {position:relative;float:left;width:300px;margin:15px 0 0;} #hd_snb #hd_sch #sch_str {padding-left:5px;width:248px;height:38px;border:1px solid #ccc;} #hd_snb #hd_sch #sch_submit {position:absolute;top:0px;padding:9px 9px 8px;border:1px solid #ccc;border-left:0px none;} #hd_snb #hd_sch .hd_keyword {display:block;float:right;margin:17px 0 0;width:70px;height:38px;overflow:hidden;} #hd_snb #hd_sch .hd_keyword a {margin:3px 0 0;display:block;width:70px;height:15px;font-weight:600;} #hd_snb #hd_banner {position:absolute;right:0px;} </style> <?php } ?> <div class="class_skin_idx_<?php echo $sk_idx;?>"> <div id="hd_snb" class="mver15 "> <div id="wrapper"> <div class="float_l head_logo_div"><a href='<?php echo $j3_url;?>'><img src="<?php echo $j3_data_url;?>/ico/logo_pc_1" alt="<?php echo $config['shop_title']; ?>"></a></div> <div id="hd_sch"> <h3 class="screen_out">쇼핑몰검색</h3> <form name='total_search_form' id='total_search_form' method='get' action='<?php echo "{$j3_shop_url}/search.php";?>' onsubmit='return false;'> <label class="screen_out">검색어(필수)</label> <input type="text" name='skey' id="sch_str" placeholder="검색어를 입력하세요." requied><input type="image" id="sch_submit" src="<?php echo $cur_img_url;?>/search_btn.png" style='width:38px;'> </form> <div class="hd_keyword"> <h4 class="gray">검색어</h4> <?php foreach($kword_list as $key=>$val){ echo " <a href='{$j3_shop_url}/search.php?skey={$val['k_word']}' class='active'>{$val['k_word']}</a>"; } ?> </div> <script> function slideShow(){ //키워드 슬라이딩 $(".hd_keyword a:eq(1)").addClass("active") .css({ opacity: 0 }) .animate({ opacity: 1 }, 600);
$(".hd_keyword").append($(".hd_keyword a:eq(0)")); $(".hd_keyword a:last").removeClass();
} setInterval("slideShow()", 2500); </script> </div> <div id="hd_banner"> <?php if($app_id!='kyongsang241'){ echo banner_display("우측상단"); } else { ?> <!--상단 우측 공지사항 시작--> <style> .hd_rt_notice{width:400px;} .hd_rt_notice h4{font-size:16px;font-weight:600;color:#ff7302;} .hd_notice_more{display: block;float: right;width: 15px;height: 15px;text-align: center;} .hd_notice_box{border-radius:5px;border:1px solid #828282;padding:7px 10px;margin-top:7px;} .hd_notice_box p{width:380px;max-height: 32px;overflow:hidden;/*display:-webkit-box;*/ -webkit-line-clamp: 2; -webkit-box-orient: vertical;position:relative;margin-right: -4px;padding-right:4px;} .hd_notice_box p:before { content: '...'; position: absolute; right: 0px; bottom: 0; } </style> <div class="hd_rt_notice"> <h4>Notice<a class="hd_notice_more" href="<?php echo "{$j3_shop_url}/board.php?b_table=notice";?>"><img src="<?php echo $cur_img_url;?>/more_btn.png" alt="더보기" title=""></a></h4> <div class="hd_notice_box"> <?php $cnt = 0; foreach($notice_list as $key=>$val){ ?> <p><?php echo strip_tags($val['w_content']);?></p> <?php $cnt++; } ?> </div> </div> <!--상단 우측 공지사항 끝--> <?php } ?> </div> </div> </div> </div>
|