forked from ZwiiCMS-Team/ZwiiCMS
[9.1.04] Aperçu en direct header
This commit is contained in:
parent
b5aab11aeb
commit
ce25a1485b
@ -7,20 +7,19 @@
|
||||
* @author Rémi Jean <remi.jean@outlook.com>
|
||||
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
||||
* @license GNU General Public License, version 3
|
||||
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||
* @copyright Copyright (C) 2018-2019, Frédéric Tempez
|
||||
* @link http://zwiicms.com/
|
||||
*/
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Aperçu en direct
|
||||
*/
|
||||
$("input, select").on("change", function() {
|
||||
|
||||
|
||||
// Récupérer la taille de l'image
|
||||
var tmpImg = new Image();
|
||||
var url = "<?php echo helper::baseUrl(false); ?>" + "site/file/source/" + $("#themeHeaderImage").val();
|
||||
tmpImg.src= url;
|
||||
@ -35,37 +34,25 @@ $("input, select").on("change", function() {
|
||||
// Couleurs, image, alignement et hauteur de la bannière
|
||||
css += "header{background-color:" + $("#themeHeaderBackgroundColor").val() + ";text-align:" + $("#themeHeaderTextAlign").val() + ";";
|
||||
|
||||
// Hauteur proportionnelle
|
||||
// Une imge est sélectionnée
|
||||
if(themeHeaderImage) {
|
||||
|
||||
console.log ((tmpImg.height / tmpImg.width ) * 100 + "%;");
|
||||
if (themeHeaderImage) {
|
||||
// Une image est sélectionnée
|
||||
css += "background-image:url('<?php echo helper::baseUrl(false); ?>site/file/source/" + themeHeaderImage + "');background-repeat:" + $("#themeHeaderImageRepeat").val() + ";background-position:" + $("#themeHeaderImagePosition").val() + ";";
|
||||
// Adaptation de la bannière
|
||||
css += "background-size:" + $("#themeHeaderImageContainer").val() + ";";
|
||||
|
||||
if (themeHeaderHeight === "none") {
|
||||
// Position responsive
|
||||
if (themeHeaderHeight === "none" ) {
|
||||
|
||||
css += "height: 0; padding-top:" + (tmpImg.height / tmpImg.width ) * 100 + "%;";
|
||||
|
||||
//console.log(css);
|
||||
css += "height: 0; padding-top:" + (tmpImg.height / tmpImg.width ) * 100 + "%}";
|
||||
} else {
|
||||
css += "line-height:" + $("#themeHeaderHeight").val() + ";height:" + themeHeaderHeight + ";";
|
||||
// Positions standards
|
||||
css += "line-height:" + $("#themeHeaderHeight").val() + ";height:" + themeHeaderHeight + "}";
|
||||
}
|
||||
|
||||
}else {
|
||||
|
||||
// Pas d'image sélectionnée
|
||||
} else {
|
||||
// Désactiver l'option responsive
|
||||
$("#themeHeaderHeight option:eq(2)").prop("selected", true);
|
||||
css += "background-image:none;";
|
||||
// Forcer la sélection 150px
|
||||
// $("#themeHeaderHeight option:eq(2)").prop("selected", true);
|
||||
// Forcer le titre dans le header
|
||||
css += "line-height:" + $("#themeHeaderHeight").val() + ";height:" + themeHeaderHeight + "}";
|
||||
$("header .container").show();
|
||||
|
||||
}
|
||||
css += "}";
|
||||
|
||||
|
||||
|
||||
// Taille, couleur, épaisseur et capitalisation du titre de la bannière
|
||||
css += "header span{color:" + $("#themeHeaderTextColor").val() + ";font-family:'" + headerFont.replace(/\+/g, " ") + "',sans-serif;font-weight:" + $("#themeHeaderFontWeight").val() + ";font-size:" + $("#themeHeaderFontSize").val() + ";text-transform:" + $("#themeHeaderTextTransform").val() + "}";
|
||||
|
Loading…
Reference in New Issue
Block a user