Poner dos videos en un solo reproductor (tematica xxx)

  • Autor Autor JulianSorel
  • Fecha de inicio Fecha de inicio
JulianSorel

JulianSorel

Dseda
Verificación en dos pasos activada
¡Ha verificado su Paypal!
¿Se puede eso en blogger?
Pasa que subo mis videos en mi blogg en Vidoza y Openload, pero hay ocasiones donde una entrada necesita 2 videos y se ve mal tener 4 videos.

¿Como se hace para ponerlos en un solo reproductor? He visto en tematica de peliculas que lo hace pero en web.
 
¿Se puede eso en blogger?
Pasa que subo mis videos en mi blogg en Vidoza y Openload, pero hay ocasiones donde una entrada necesita 2 videos y se ve mal tener 4 videos.

¿Como se hace para ponerlos en un solo reproductor? He visto en tematica de peliculas que lo hace pero en web.
Puedes hacerlo a través de código o pagarle a un programador para que lo haga
 
Creo que te refieres a un navegación por tabs, en worpdrees hay plugin pero en el caso de blogger las puedes poner asi:

HTML:
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'opcion1')">Opcion 1</button>
  <button class="tablinks" onclick="openCity(event, 'opcion2')">Opcion 2</button>
  <button class="tablinks" onclick="openCity(event, 'opcion3')">Opcion 3</button>
</div>
<div class="tabcontent" id="opcion1" style="display:block;">
<iframe allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/IIYUyi2_sNU" width="560"></iframe>
</div>
<div class="tabcontent" id="opcion2">
<iframe allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/hzmpysD8Ql0" width="560"></iframe>
</div>
<div class="tabcontent" id="opcion3">
<iframe allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/d4hute00IAE" width="560"></iframe>
</div>


y crean un gadget de tipo javascript/ html ponen lo siguiente:

HTML:
<style>
body {font-family: Arial;}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
</style>
<script>
function openCity(evt, cityName) {
    var i, tabcontent, tablinks;
    tabcontent = document.getElementsByClassName("tabcontent");
    for (i = 0; i < tabcontent.length; i++) {
        tabcontent[i].style.display = "none";
    }
    tablinks = document.getElementsByClassName("tablinks");
    for (i = 0; i < tablinks.length; i++) {
        tablinks[i].className = tablinks[i].className.replace(" active", "");
    }
    document.getElementById(cityName).style.display = "block";
    evt.currentTarget.className += " active";
}
</script>

Aqui les dejo un ejemplo de como se ve: Mexico Live it to believe it
 
gracias por la informacion
 
Creo que te refieres a un navegación por tabs, en worpdrees hay plugin pero en el caso de blogger las puedes poner asi:

HTML:
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'opcion1')">Opcion 1</button>
  <button class="tablinks" onclick="openCity(event, 'opcion2')">Opcion 2</button>
  <button class="tablinks" onclick="openCity(event, 'opcion3')">Opcion 3</button>
</div>
<div class="tabcontent" id="opcion1" style="display:block;">
<iframe allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/IIYUyi2_sNU" width="560"></iframe>
</div>
<div class="tabcontent" id="opcion2">
<iframe allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/hzmpysD8Ql0" width="560"></iframe>
</div>
<div class="tabcontent" id="opcion3">
<iframe allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/d4hute00IAE" width="560"></iframe>
</div>


y crean un gadget de tipo javascript/ html ponen lo siguiente:

HTML:
<style>
body {font-family: Arial;}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
</style>
<script>
function openCity(evt, cityName) {
    var i, tabcontent, tablinks;
    tabcontent = document.getElementsByClassName("tabcontent");
    for (i = 0; i < tabcontent.length; i++) {
        tabcontent[i].style.display = "none";
    }
    tablinks = document.getElementsByClassName("tablinks");
    for (i = 0; i < tablinks.length; i++) {
        tablinks[i].className = tablinks[i].className.replace(" active", "");
    }
    document.getElementById(cityName).style.display = "block";
    evt.currentTarget.className += " active";
}
</script>

Disculpa por la pregunta de novato pero ese gadget que indicas, ¿Donde lo coloco? ¿En el codigo HTML de mi tema de blogspot?

(Actualizado...)

Lo puse en el cuerpo el gadget y funcionó. No entiendo como 😵
Osea no sé mucho de HMTL pero no entiendo como un gadget puede alterar las entradas del blog de esa manera.
Creí que la manera de hacerlo seria colocandolo en el codigo HTML de mi tema...

¡GRACIAS!
 
Última edición:
Creo que te refieres a un navegación por tabs, en worpdrees hay plugin pero en el caso de blogger las puedes poner asi:

HTML:
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'opcion1')">Opcion 1</button>
  <button class="tablinks" onclick="openCity(event, 'opcion2')">Opcion 2</button>
  <button class="tablinks" onclick="openCity(event, 'opcion3')">Opcion 3</button>
</div>
<div class="tabcontent" id="opcion1" style="display:block;">
<iframe allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/IIYUyi2_sNU" width="560"></iframe>
</div>
<div class="tabcontent" id="opcion2">
<iframe allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/hzmpysD8Ql0" width="560"></iframe>
</div>
<div class="tabcontent" id="opcion3">
<iframe allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/d4hute00IAE" width="560"></iframe>
</div>


y crean un gadget de tipo javascript/ html ponen lo siguiente:

HTML:
<style>
body {font-family: Arial;}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
</style>
<script>
function openCity(evt, cityName) {
    var i, tabcontent, tablinks;
    tabcontent = document.getElementsByClassName("tabcontent");
    for (i = 0; i < tabcontent.length; i++) {
        tabcontent[i].style.display = "none";
    }
    tablinks = document.getElementsByClassName("tablinks");
    for (i = 0; i < tablinks.length; i++) {
        tablinks[i].className = tablinks[i].className.replace(" active", "");
    }
    document.getElementById(cityName).style.display = "block";
    evt.currentTarget.className += " active";
}
</script>

Disculpa por la pregunta de novato pero ese gadget que indicas, ¿Donde lo coloco? ¿En el codigo HTML de mi tema de blogspot?

(Actualizado...)

Lo puse en el cuerpo el gadget y funcionó. No entiendo como 😵
Osea no sé mucho de HMTL pero no entiendo como un gadget puede alterar las entradas del blog de esa manera.
Creí que la manera de hacerlo seria colocandolo en el codigo HTML de mi tema...

¡GRACIAS!

Puedes pasar captura? yo necesitaba de esto hace un buen de tiempo, actualmente ya no aunque me llamaria la atención ver que tal queda, un saludo
 
Puedes pasar captura? yo necesitaba de esto hace un buen de tiempo, actualmente ya no aunque me llamaria la atención ver que tal queda, un saludo

Aqui te dejo un ejemplo de como queda ----> Mexico Live it to believe it

y una captura:
dasdada.webp
 
Atrás
Arriba