Move fotorama arrows outside stage

前端 未结 1 660
感动是毒
感动是毒 2021-01-26 10:45

Is it possible to move the fotorama arrows out of div.fotorama_stage and into div.fotorama_nav-wrap?

I am looking to position my arrows on either side of the na

相关标签:
1条回答
  • 2021-01-26 11:17

    Here is my friend http://jsfiddle.net/meickol/72jTR/

    HTML

    <!-- Just don’t want to repeat this prefix in every img[src] -->
      <base href="http://fotorama.s3.amazonaws.com/i/okonechnikov/">
    
    <!-- Fotorama -->
    <div class="fotorama_custom" data-width="700" data-ratio="700/467" data-max-width="100%">
      <img src="1-lo.jpg">
      <img src="2-lo.jpg">
      <img src="9-lo.jpg">
      <img src="6-lo.jpg">
      <img src="5-lo.jpg">
    </div>
    

    SCRIPT

      // 1. Initialize fotorama manually.
        var $fotoramaDiv = jQuery('.fotorama_custom').fotorama();
    
        // 2. Get the API object.
        var fotorama = $fotoramaDiv.data('fotorama');
    
    // add our buttons 
    
        jQuery("<div class='fotorama_custom__arr fotorama_custom__arr--prev'><</div>").insertBefore(".fotorama__nav-");
        jQuery("<div class='fotorama_custom__arr fotorama_custom__arr--next'>></div>").insertAfter(".fotorama__nav-");
    
    
    // make the buttons functionality
        jQuery('.fotorama_custom__arr--prev').click(function () {
            fotorama.show('<');
        });
        jQuery('.fotorama_custom__arr--next').click(function () {
            fotorama.show('>');
        });
    
    0 讨论(0)
提交回复
热议问题