Botão de esticar o player

  Desculpe, esta página está aguardando tradução para o português

To control the width and height of the player container, you need to enable the Settings / Size / Container size. The container must be set width and height (in pixels with css or html).

You also need to add your own button to the control panel and assign it a call to an external JS function that will expand and narrow the player container. Icons of button states in SVG format can be found in the editor's library by separating them with a symbol ///

This function should be available in the global space on the page with the player. Simply it can be like this:

var playerWideMode = false;
function PlayerWideMode(){
    if(playerWideMode){
        document.getElementById("player").style.width = "500px";
    }else{
        document.getElementById("player").style.width = "100%";
    }
    playerWideMode = !playerWideMode;
}

In practice, a wide player usually requires the transformation of other page elements as well. You should also enable the Hide / on fullscreen option in the button settings.

Example:


19.12.2
2024 © PlayerJS

Iniciar sessão

Iniciar sessão

Inscrever-se gratuitamente

Inscrever-se
Ao inscrever-se, o utilizador concorda com Termos de Serviço
Login se tiver uma conta

Restaurar a palavra-passe

Restaurar
Esqueceu-se do e-mail? Contacte-nos