2014-10-10 2 views
1

flexslider에 자동 높이가 있고 그 아래에 여전히 공간이 있습니다.FlexSlider 여전히 자동 높이가 슬라이더 아래 공간을 남깁니다.

슬라이더에 배경색을 적용하고 자동 높이를 사용하고 위아래로 움직이지만 슬라이더가 가장 큰 사진을 찍고 그 높이에서 슬라이더를 유지하는 것처럼 보입니다.

도움이 될 것입니다.

현재 라이브 페이지를 볼 수는 :

This is my html: 
<div id="carousel" class="flexslider"> 
<ul class="slides"> 
<li class="slide"> 
<img src="<?php echo $thumb_image; ?>" /> 
</li> 
</ul> 
</div> 

<div id="slider" class="flexslider"> 
    <ul class="slides"> 
    <li class="slide"> 
     <img class="slidermainimg" src="<?php echo $main_image; ?>" /> 
    </li> 
    </ul> 
</div> 

http://therichmondhillgallery.com/index.php/shows/bruce-yardley/

내 CSS입니다 :

/* Browser Resets 
*********************************/ 
.flex-container a:active, 
.flexslider a:active, 
.flex-container a:focus, 
.flexslider a:focus {outline: none;} 
.slides, 
.flex-control-nav, 
.flex-direction-nav {margin: 0; padding: 0; list-style: none;} 

/* Icon Fonts 
*********************************/ 
/* Font-face Icons */ 
@font-face { 
    font-family: 'flexslider-icon'; 
    src:url('../fonts/flexslider-icon.eot'); 
    src:url('../fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), 
     url('../fonts/flexslider-icon.woff') format('woff'), 
     url('../fonts/flexslider-icon.ttf') format('truetype'), 
     url('../fonts/flexslider-icon.svg#flexslider-icon') format('svg'); 
    font-weight: normal; 
    font-style: normal; 
} 

/* FlexSlider Necessary Styles 
*********************************/ 
.flexslider {margin: 0; padding: 0;} 
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden; margin-right:10px;} /* Hide the slides before the JS is loaded. Avoids image jumping */ 
.flexslider .slides img {width: 100%; display: block;} 
.flex-pauseplay span {text-transform: capitalize;} 

/* Clearfix for the .slides element */ 
.slides:after {content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} 
html[xmlns] .slides {display: block;} 
* html .slides {height: 1%;} 

/* No JavaScript Fallback */ 
/* If you are not using another script, such as Modernizr, make sure you 
* include js that eliminates this class on page load */ 
.no-js .slides > li:first-child {display: block;} 

/* FlexSlider Default Theme 
*********************************/ 
.flexslider { margin: 0 0 30px; position: relative; zoom: 1; } 
.flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; } 
.loading .flex-viewport { max-height: 300px; } 
.flexslider .slides { zoom: 1; } 
.carousel li { margin-right: 5px;} 

/* Direction Nav */ 
.flex-direction-nav {*height: 0;} 
.flex-direction-nav a { text-decoration:none; display: block; width: 40px; height: 30px; margin: -20px 0 0; position: absolute; top: 55%; z-index: 10; overflow: hidden; opacity: 0.6; cursor: pointer; color: rgba(0,0,0,0.8); text-shadow: 1px 1px 0 rgba(255,255,255,0.3); -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease; } 
.flex-direction-nav .flex-prev { left: 10px; display: block;} 
.flex-direction-nav .flex-next { right: 10px; text-align: right; display: block;} 
.flexslider:hover .flex-prev { opacity: 1; left: 10px;} 
.flexslider:hover .flex-next { opacity: 1; right: 10px;} 
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover { opacity: 1; } 
.flex-direction-nav .flex-disabled { opacity: 0!important; filter:alpha(opacity=0); cursor: default; } 
.flex-direction-nav a:before { font-family: "flexslider-icon"; font-size: 30px; display: inline-block; content: '\f001'; color:#ffffff; } 
.flex-direction-nav a.flex-next:before { content: '\f002'; } 

/* Control Nav */ 
.flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;} 
.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;} 
.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -o-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); box-shadow: inset 0 0 3px rgba(0,0,0,0.3); } 
.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); } 
.flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; } 

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;} 
.flex-control-thumbs li {width: 25%; float: left; margin: 0;} 
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;} 
.flex-control-thumbs img:hover {opacity: 1;} 
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;} 

#slider {background-color:#ff6600; margin-bottom:0px;} 

@media screen and (max-width: 860px) { 
    .flex-direction-nav .flex-prev { opacity: 1; left: 10px;} 
    .flex-direction-nav .flex-next { opacity: 1; right: 10px;} 
} 

그리고 이것은 내 자바 스크립트입니다 :

<link rel="stylesheet" href="css/flexslider.css" type="text/css" media="screen" /> 

      <script type="text/javascript"> 
      $(window).load(function() { 
       $('#carousel').flexslider({ 
       animation: "slide", 
      animationLoop: true, 
      itemWidth: 200, 
      itemMargin: 10, 
      minItems: 5, 
      move: 5, 
      controlNav: false, 
       asNavFor: '#slider' 
       }); 

       $('#slider').flexslider({ 
       animation: "fade", 
       controlNav: false, 
       animationLoop: true, 
       slideshow: false, 
       smoothHeight: true, 
      slideshowSpeed: 20000, 
      directionNav: false, 
       sync: "#carousel" 
       }); 
      }); 
     </script> 
+0

에 해당 경로가 정확한지 아마 그걸 고칠 수 있을까요? – Victor

+0

안녕하세요 빅터 저는 Wordpress 테마로 사이트를 변환 할 때 꺼내는 것을 잊어 버린 코드 줄입니다. 필자는 그것을 제거하고 여전히 동일하게 제거했습니다. 페이지가 먼저로드되지만 가장 높은 이미지의 높이로 다시 이동합니다. – lbollu

+0

'# slider '에'overflow : hidden'을 추가하면 수정되지만, 그렇게하지 않아도됩니다. 개인적으로 슬라이더 플러그인을 다시 설치합니다. – Victor

답변

4

overflow: hidden 
추가

[크롬 개발자 도구 (https://developer.chrome.com/devtools)는 (파일을 찾을 수 없음) 확인하는 시도 flexslider.css에 오류를주고에서
#slider 
+0

고맙습니다. 이렇게하면 flexslider를 사용하여 썸네일을 슬라이더로 내려서 "큰 것"으로보고 싶은 사진을 선택하는 문제를 해결할 수 있습니다. 수직 이미지를 삽입했을 때, flexslider는 수직 사진 때문에 매우 추한 아래의 공백을 남겼습니다 ..... 다시 고마워요;) – danigonlinea

+0

probs. 투표 해줘서 고마워. – Victor

+0

오버 플로우 추가 : ul.slides에 숨김 그것은 나를 위해 일했습니다! – Jestin

관련 문제