Move fotorama arrows outside stage

前端 未结 1 667
感动是毒
感动是毒 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

    
      
    
    
    

    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("
    <
    ").insertBefore(".fotorama__nav-"); jQuery("
    >
    ").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)
提交回复
热议问题