해피정님 슬라이드 스킨에서 이미지와 버튼 순서를 바꾸고 싶은데요.
관련링크
본문
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
if (!function_exists("imagecopyresampled")) alert("GD 2.0.1 이상 버전이 설치되어 있어야 사용할 수 있는 갤러리 게시판 입니다.");
/*
<?php
$popzone_board = "popzone"; // 게시판 이름
$popzone_skin = "hp_utf_slidersjs"; // 스킨폴더 이름
$popzone_thumb = "thumb_slidersjs"; // 썸네일 폴더명 변경시 latest.skin.php 의 파일내용중 폴더명 일치필요
include_once $g4['path']."/skin/latest/".$popzone_skin."/slidesjs.lib.php";
echo latest_slidersjs("{$popzone_skin}", "{$popzone_board}", 16, 20);
// ("스킨명", "게시판명, 출력수, 글자수)
if ($is_admin) { // 섬네일 일괄삭제
if ($delete_smallimg == 1 && !empty($is_admin)){
include_once $g4['admin_path'] . '/admin.lib.php';
rm_rf("$g4[path]/data/file/".$popzone_board."/".$popzone_thumb."/".$thumb_name);
alert("$g4[path]/data/file/".$popzone_board."/".$popzone_thumb."/".$thumb_name." 을 몽땅 삭제하였습니다.", $_SERVER['PHP_SELF'] . '?' . str_replace('delete_smallimg=1&', '', $_SERVER['QUERY_STRING']));
}
echo "<a href='".$g4[path]."/bbs/board.php?bo_table=".$popzone_board."'>관리</a> | <a href='".$_SERVER['PHP_SELF']."?delete_smallimg=1&".$_SERVER['QUERY_STRING']."'>Thumb삭제</a>";
}
?>
*/
//옵션분리
list($imgwidth, $imgheight) = explode(",", $options);
if(!$imgwidth) $imgwidth = 336; //표시할 이미지의 가로사이즈
if(!$imgheight) $imgheight = 194; //표시할 이미지의 세로사이즈
$img_quality = 100;
$data_path = G5_DATA_PATH."/file/$bo_table";
$thumb_path = $data_path.'/thumb_slidersjs';
$ym = date("ym", G5_SERVER_TIME);
@mkdir($thumb_path, 0707);
@chmod($thumb_path, 0707);
?>
<link rel="stylesheet" href="<?php echo $latest_skin_url; ?>/css/font-awesome.min.css">
<!-- SlidesJS Optional: If you'd like to use this design -->
<style>
#slides {
display: none
}
#slides .slidesjs-navigation {
margin-top:5px;
}
a.slidesjs-next,
a.slidesjs-previous,
a.slidesjs-play,
a.slidesjs-stop {
background-image: url(<?php echo $latest_skin_url; ?>/img/btns-next-prev.png);
background-repeat: no-repeat;
display:block;
width:12px;
height:18px;
overflow: hidden;
text-indent: -9999px;
float: left;
margin-right:5px;
}
a.slidesjs-next {
margin-right:10px;
background-position: -12px 0;
}
a:hover.slidesjs-next {
background-position: -12px -18px;
}
a.slidesjs-previous {
background-position: 0 0;
}
a:hover.slidesjs-previous {
background-position: 0 -18px;
}
a.slidesjs-play {
width:15px;
background-position: -25px 0;
}
a:hover.slidesjs-play {
background-position: -25px -18px;
}
a.slidesjs-stop {
width:18px;
background-position: -41px 0;
}
a:hover.slidesjs-stop {
background-position: -41px -18px;
}
.slidesjs-pagination {
margin: 7px 0 0;
float: right;
list-style: none;
}
.slidesjs-pagination li {
float: left;
margin: 0 1px;
}
.slidesjs-pagination li a {
display: block;
width: 13px;
height: 0;
padding-top: 13px;
background-image: url(<?php echo $latest_skin_url; ?>/img/pagination.png);
background-position: 0 0;
float: left;
overflow: hidden;
}
.slidesjs-pagination li a.active,
.slidesjs-pagination li a:hover.active {
background-position: 0 -13px
}
.slidesjs-pagination li a:hover {
background-position: 0 -26px
}
#slides a:link,
#slides a:visited {
color: #333
}
#slides a:hover,
#slides a:active {
color: #9e2020
}
.navbar {
overflow: hidden
}
</style>
<!-- End SlidesJS Optional-->
<!-- SlidesJS Required: These styles are required if you'd like a responsive slideshow -->
<style>
#slides {
display: none
}
.container {
margin: 0 auto
}
</style>
<div class="container">
<div id="slides">
<?php
for ($i=0; $i<count($list); $i++) {
//썸네일 생성
$thumb = get_list_thumbnail($bo_table, $list[$i]['wr_id'], $imgwidth, $imgheight);
if($thumb['src']) {
$img_content = '<img class="img_left" src="'.$thumb['src'].'" alt="'.$list[$i]['subject'].'" width="'.$imgwidth.'" height="'.$imgheight.'">';
} else {
$img_content = 'NO IMAGE';
}
if ($list[$i][wr_link1]) {
if ($list[$i][wr_link2] == "none") {
echo "{$img_content}";
} elseif ($list[$i][wr_link2] == "_blank") {
echo "<a href='{$list[$i][wr_link1]}' target='_blank'>{$img_content}</a>";
} elseif ($list[$i][wr_link2] == "_self") {
echo "<a href='{$list[$i][wr_link1]}'>{$img_content}</a>";
} else {
if ($list[$i][wr_link1]) {
echo "<a href='{$list[$i][wr_link1]}' target='_blank'>{$img_content}</a>";
} else {
echo "<a href='{$list[$i][href]}'>{$img_content}</a>";
}
}
} else {
echo "{$img_content}";
}
}
if (count($list) == 0) {
echo "<center><font color=#6A6A6A>새소식이 없습니다.</font></center>";
}
?>
</div>
</div>
<!--<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>//-->
<script src="<?php echo $latest_skin_url; ?>/js/jquery.slides.min.js"></script>
<script>
$(function() {
$('#slides').slidesjs({
width: <?php echo $imgwidth; ?>,
height: <?php echo $imgheight; ?>,
play: {
active: true,
auto: true,
interval: 4000,
swap: true,
pauseOnHover: true,
restartDelay: 2500
}
});
});
</script>
링크에 있는 스킨인데요.
현재
///이미지
플레이버튼//
이렇게 되어 있는것을
//플레이버튼
이미지///
이렇게 바꿀수가 있을까요?
!-->
답변 1
답변이 없어 답변드립니다^^
특정 스킨에 대한 질문은 답변이 잘 없더라고요
왜냐면 그 스킨을 이용해본 이 중에 답변을 다는 확률이 적기 때문입니다.
해결책
1. 직접 디버깅하시면서 만들어보시거나
2. 안되면 의뢰게시판에 의뢰하시는 수밖에 없을듯 합니다.
모쪼록 잘 해결되시길 기원합니다
중요) 이렇게 긴 질문을 하시면 답변 얻을 확률이 더 적어지니
요점만으로 짧게 질문하시는 것도 요령입니다
답변을 작성하시기 전에 로그인 해주세요.