Tarea #1034 -> El botón de ampliar, cuando le das a la pantalla completa está situado justo donde está el logo de YouTube, tendría que estar justo arriba, para que no lo tape.
Tarea #1035 -> Cambiar el icono del botón para pantalla completa git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@136 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
This commit is contained in:
parent
dba525e556
commit
538d0d0bbb
@ -7,6 +7,15 @@ jQuery(document).ready(function(){
|
|||||||
_fullscreen = jQuery('.controls_fullscreen').children('img');
|
_fullscreen = jQuery('.controls_fullscreen').children('img');
|
||||||
_srcimg = _fullscreen.attr('src');
|
_srcimg = _fullscreen.attr('src');
|
||||||
|
|
||||||
|
_fullscreen.hover(
|
||||||
|
function() {
|
||||||
|
_fullscreen.attr('src', _srcimg.replace('fullscreen.png', 'fullscreen_on.png'));
|
||||||
|
},
|
||||||
|
function() {
|
||||||
|
_fullscreen.attr('src', _srcimg.replace('fullscreen_on.png', 'fullscreen.png'));
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
_fullscreen.bind('click', function(){
|
_fullscreen.bind('click', function(){
|
||||||
if (jQuery('#the_slider').hasClass('fullscreen_div')) {
|
if (jQuery('#the_slider').hasClass('fullscreen_div')) {
|
||||||
jQuery('#the_slider').removeClass('fullscreen_div');
|
jQuery('#the_slider').removeClass('fullscreen_div');
|
||||||
|
|||||||
@ -135,13 +135,13 @@
|
|||||||
height:40px;
|
height:40px;
|
||||||
right:0px;
|
right:0px;
|
||||||
top:0px;
|
top:0px;
|
||||||
background-color: rgb(0, 0, 0);
|
/*background-color: rgb(0, 0, 0);
|
||||||
background-color: rgba(0, 0, 0, 0.6);
|
background-color: rgba(0, 0, 0, 0.6);*/
|
||||||
}
|
}
|
||||||
|
|
||||||
#componentWrapper .controls_fullscreen {
|
#componentWrapper .controls_fullscreen {
|
||||||
/*left: 0px !important;*/
|
/*left: 0px !important;*/
|
||||||
bottom: 36px !important;
|
bottom: 70px !important;
|
||||||
top: auto !important;
|
top: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.8 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
Loading…
Reference in New Issue
Block a user