Diferencia entre revisiones de «Página principal»
De enunpimpam
Línea 25: | Línea 25: | ||
Codigo css | Codigo css | ||
− | < | + | |
+ | <syntaxhighlight lang="css"> | ||
#home-overlay { | #home-overlay { | ||
background-color: rgba(0, 0, 0, 0.8); | background-color: rgba(0, 0, 0, 0.8); | ||
Línea 45: | Línea 46: | ||
} </pre> | } </pre> | ||
+ | |||
+ | </syntaxhighlight> | ||
JavaScript | JavaScript | ||
− | < | + | <syntaxhighlight lang="js"> |
− | |||
/* ======================== | /* ======================== | ||
Preloader | Preloader | ||
Línea 55: | Línea 57: | ||
$("#preloader").delay(350).fadeOut("slow"); | $("#preloader").delay(350).fadeOut("slow"); | ||
}); | }); | ||
− | </ | + | </syntaxhighlight> |
Revisión del 00:36 21 abr 2020
MediaWiki se ha instalado.
Consulta la guía para obtener información sobre el uso del software wiki.
Primeros pasos
- Lista de ajustes de configuración
- Preguntas frecuentes sobre MediaWiki
- Lista de correo de anuncios de publicación de MediaWiki
- Traducir MediaWiki a tu idioma
- Aprende a combatir el spam en tu wiki
Consola
root@pimpam:/var/www/html/mediawiki/extensions/SyntaxHighlight# ls CODE_OF_CONDUCT.md extension.json includes package-lock.json SyntaxHighlight.lexers.php composer.json Gruntfile.js maintenance pygments tests COPYING i18n modules README root@pimpam:/var/www/html/mediawiki/extensions/SyntaxHighlight# cd .. root@pimpam:/var/www/html/mediawiki/extensions# cd ..
Codigo css
#home-overlay { background-color: rgba(0, 0, 0, 0.8); width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: -1; } #home-content { width: 100%; height: 100%; display: table; } #home-content-inner { display: table-cell; vertical-align: middle; } </pre>
JavaScript
/* ======================== Preloader ===========================*/ $(window).on("load", function () { $("#status").fadeOut(); $("#preloader").delay(350).fadeOut("slow"); });