2012-07-26 1 views
0

나는 AnythingSlider을 사용하고 있습니다 만, 하단 대신에 이미지의 왼쪽에 표시되도록 버튼을 변경하고 싶습니다.anything 슬라이더 changng 위치 내비게이션 버튼

나는 <ul>list-style:none; 나는 다른 위치에서 변경 시도를 변경해야 생각하지만, 나는 왼쪽에 있어야 할 버튼의 위치를 ​​변경하고, 수직 this 같은 것을 보여주기 위해 방법을 알아낼 수 없습니다.

Here is my CSS

답변

0

체크 아웃 this demo. appendControlsTo 옵션을 사용하여 슬라이더 컨트롤을 완전히 이동합니다. 자신 만의 CSS 스타일을 추가해야합니다 (데모 참조). appendControlsTo option에 대한 자세한 내용은

$('#slider').anythingSlider({ 
    // A HTML element (jQuery Object, selector or HTMLNode) to which 
    // the controls will be appended, if not null 
    appendControlsTo: $('#nav'), 

    // Go to https://github.com/ProLoser/AnythingSlider/wiki/Navigation-options#wiki-navigationformatter 
    // for details on how to set up this navigationFormatter option 
    navigationFormatter: function(index, panel) { 
     // This is the default format (show just the panel index number) 
     return "" + index; 
    } 
});​ 

, 위키 문서를 체크 아웃