• Resolved agiveon

    (@agiveon)


    I would like to create a button that when clicked, the viewer goes into full screen mode automatically. Anyone was able to do that or knows how to do that?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Avirtum

    (@avirtum)

    The plugin has a custom js section where you can add some code to create dynamic controls or link an event to existing one.
    As example:
    //==================================================
    console.log(‘plugin loaded…’);

    var instance = this,
    $ = jQuery;

    for(var i=0;i<instance.hotSpots.length;i++) {
    var $hotspot = instance.hotSpots[i].$el;
    $hotspot.on(‘mousedown touchend’, function(e) {
    $(this).addClass(‘ipnrm-clicked’);
    });
    }
    //==================================================

    Hi
    how can i start full screen .
    thats mean when my visitor click my link they see full screen by defult?
    can you help me
    pleas

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Start viewer in full screen mode’ is closed to new replies.