하나의 방법. 그런 식으로 jQuery 슬라이드 함수가 높이를 바꿀 수 없으므로 오른쪽에서 오는 것처럼 보입니다.
는
http://jsfiddle.net/tyuth1sr/11/ 내가 주위에 몇 가지 클래스를 변경했다 참조하고, 높이가 IMO 대응하기 어려울 것입니다.
.bottom {
bottom: 0;
margin-bottom: 0px;
position:absolute;
}
.flex-caption {
position: absolute;
text-align: left;
background:rgba(255, 255, 255, 0.7);
z-index: 1;
padding: 20px;
width: 295px;
padding-top: 100%;
bottom: 20px;
right:0;
height:650px !important; /* should be set to height of container - 40 for padding */
}
<div class="flex-caption ">
<div class="caption-content bottom">
<p>Taectur sinti consed magnimp oreptatem que est essi cuptus doluptate pratis rero omni con fugitatius venienimus. Xim fuga. Iliqui omnim comnimus estiorrum cum et accus et liquia nos.</p>
</div>
</div>
당신은 부모 (.flex 슬라이더) 상자 크기 조정 줄 수 있습니다 : 여기에 내가 변경 한 코드 경계 - 상자가; 플렉스 캡션의 높이를 100 %로하십시오!
덕분에 많이 @isherwood, 디스플레이 : 없음 트릭을하지 않았다. 불행히도 캡션 패널의 아래쪽에 텍스트를 표시해야합니다. 그렇지 않으면 권장 사항에 따라 상단 및 패딩을 변경합니다. –