Versiones comparadas

Clave

  • Se ha añadido esta línea.
  • Se ha eliminado esta línea.
  • El formato se ha cambiado.

Repositorio de vídeos con carácter formativo y de comunicación producidos por la DGSIC:

Tabla de contenidos


Vídeos producidos en la DGSIC

Más información sobre los tipos de vídeos producidos en la DGSIC.


UI Tabs
UI Tab
titleListado general


Table Filter
fixedCols
totalrowCount,Count,Count,,,,,,,,,,,,
hidelabelsfalse
ddSeparator‚‚
sparkNameSparkline
hidePaneFiltration panel
customNoTableMsgText
limitHeight
sparklinefalse
default,,,,IDCATEGORÍA&&CC&&COLECCIÓN&&SUBTÍTULOSCREATION DATE&&THUMBNAILPosterframe&&TIPO/SUBTIPO&&TÍTULO&&UPDATE DATE&&USUARIO&&LUGAR PUBLICACIÓNVídeo
isFirstTimeEntertrue
cell-width250,250,250,250,250
hideColumnstrue
totalRowNameSUBTOTALES
totalColName
customNoTableMsgfalse
disabledfalse
enabledInEditorfalse
globalFilterfalse
id17382457529021743597686460_-14110954611550292304
iconfilter
order0,1,3,2,4
hideControlstrue
inversefalse,false,false,false,falsetrue
numbering
datefilter
columnCOLECCIÓN,CATEGORÍA,USUARIO
sort
totalcol
disableSavetrue
rowsPerPage
separatorPoint (.)
labelsCOLECCIÓN‚CATEGORÍA‚USUARIO‚TÍTULO‚Hide columns
thousandSeparator
ignoreFirstNrows
ddOperatorOR,OR,OR
userfilterTÍTULO
datepatterndd-mm-yy
numberfilter
heightValue
hideFilters4
updateSelectOptionstrue
worklog365|5|8|y w d h m|y w d h m
isORAND
showNRowsifNotFiltered
Table Excerpt
nameRepositorio de vídeos

Excel
sortDescendingtrue
countryES
sheetsHoja1
nameListado de vídeos.xlsx
width100%
languageES
pageRepositorio de vídeos
formatColumnfalse
exportFileDelimiter%2C
sortIcontrue

UI Tab
titlePor colecciones

UI Children Cards
excludeAvatarstrue
sorttitle


Divbox
classdivcontenedor
Divbox
stylewidth: 96%; text-align: left;
classdivcontenido

Instrucciones de uso



Para usar estos vídeos deben ser insertados en el soporte deseado mediante un elemento HTML <iframe>, como el del siguiente ejemplo, donde el atributo src deberá ser sustituido por la URL de publicación correspondiente al vídeo que queremos insertar:

Bloque de código
languagexml
titleEjemplo de iframe
<iframe width="480" height="270" style="display: block; margin-left: auto; margin-right: auto;" src="URL DEL VÍDEO" allowfullscreen="allowfullscreen"></iframe>


Si quieres usar uno de estos vídeos en una página de Confluence inserta la macro "_STIC - Imagen/Vídeo para blog" y añade ambas URLs en cada uno de los campos requeridos.


Divbox
classir-arriba


HTML
<script>
/*------*/
/* JS para botón para Subir al inicio de la página (fixed esquina derecha abajo)*/
/*------*/
$(document).ready(function(){
	$('.ir-arriba').click(function(){
		$('body, html').animate({
			scrollTop: '0px'
		}, 300);
	});

	$(window).scroll(function(){
		if( $(this).scrollTop() > 0 ){
			$('.ir-arriba').slideDown(300);
		} else {
			$('.ir-arriba').slideUp(300);
		}
	});
});
</script>