[9.1.04] aperçu dans le header travail en cours
This commit is contained in:
parent
665b66f2bf
commit
d315060e0a
@ -12,12 +12,35 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Récupérer les dimensions de l'image et les place dans des champs cachés
|
||||||
|
$("#themeHeaderImage").on("change", function() {
|
||||||
|
if($(this).val() !== '') {
|
||||||
|
var tmpImg = new Image();
|
||||||
|
var url = "<?php echo helper::baseUrl(false); ?>" + "site/file/source/" + $("#themeHeaderImage").val();
|
||||||
|
tmpImg.src= url;
|
||||||
|
$(tmpImg).on('load',function(){
|
||||||
|
$("#themeHeaderImageWidth").val(tmpImg.width);
|
||||||
|
$("#themeHeaderImageHeight").val(tmpImg.height);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
$("#themeHeaderImageWidth").val(0);
|
||||||
|
$("#themeHeaderImageHeight").val(0);
|
||||||
|
}
|
||||||
|
console.log ("imagesize");
|
||||||
|
}).trigger("change");
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Aperçu en direct
|
* Aperçu en direct
|
||||||
*/
|
*/
|
||||||
$("input, select").on("change", function() {
|
$("input, select").on("change", function() {
|
||||||
|
|
||||||
|
var themeHeaderHeight = $("#themeHeaderHeight").val();
|
||||||
|
var widthSize = $("#themeHeaderImageWidth").val();
|
||||||
|
var heightSize = $("#themeHeaderImageHeight").val();
|
||||||
|
var themeHeaderImage = $("#themeHeaderImage").val();
|
||||||
|
|
||||||
|
|
||||||
// Import des polices de caractères
|
// Import des polices de caractères
|
||||||
var headerFont = $("#themeHeaderFont").val();
|
var headerFont = $("#themeHeaderFont").val();
|
||||||
var css = "@import url('https://fonts.googleapis.com/css?family=" + headerFont + "');";
|
var css = "@import url('https://fonts.googleapis.com/css?family=" + headerFont + "');";
|
||||||
@ -26,28 +49,36 @@ $("input, select").on("change", function() {
|
|||||||
css += "header{background-color:" + $("#themeHeaderBackgroundColor").val() + ";text-align:" + $("#themeHeaderTextAlign").val() + ";";
|
css += "header{background-color:" + $("#themeHeaderBackgroundColor").val() + ";text-align:" + $("#themeHeaderTextAlign").val() + ";";
|
||||||
|
|
||||||
// Hauteur proportionnelle
|
// Hauteur proportionnelle
|
||||||
var themeHeaderHeight = $("#themeHeaderHeight").val();
|
|
||||||
var widthSize = $("#themeHeaderImageWidth").val();
|
|
||||||
var heightSize = $("#themeHeaderImageHeight").val();
|
|
||||||
if (themeHeaderHeight === "none" ) {
|
|
||||||
css += "height: 0; padding-top:" + (heightSize / widthSize ) * 100 + "%}";
|
|
||||||
} else {
|
|
||||||
css += ";line-height:" + $("#themeHeaderHeight").val() + ";height:" + themeHeaderHeight + "}";
|
|
||||||
}
|
|
||||||
|
|
||||||
var themeHeaderImage = $("#themeHeaderImage").val();
|
|
||||||
|
// Une imge est sélectionnée
|
||||||
if(themeHeaderImage) {
|
if(themeHeaderImage) {
|
||||||
css += "header{background-image:url('<?php echo helper::baseUrl(false); ?>site/file/source/" + themeHeaderImage + "');background-repeat:" + $("#themeHeaderImageRepeat").val() + ";background-position:" + $("#themeHeaderImagePosition").val() + "}";
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
css += "header{background-image:none}";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Adaptation de la bannière
|
|
||||||
css += "header{background-size:" + $("#themeHeaderImageContainer").val() + "}";
|
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() + ";";
|
||||||
|
|
||||||
|
// Position responsive
|
||||||
|
if (themeHeaderHeight === "none" ) {
|
||||||
|
|
||||||
|
css += "height: 0; padding-top:" + (heightSize / widthSize ) * 100 + "%;";
|
||||||
|
|
||||||
|
console.log(widthSize + "-" + heightSize + ' ' + themeHeaderImage );
|
||||||
|
//console.log(css);
|
||||||
|
} else {
|
||||||
|
css += "line-height:" + $("#themeHeaderHeight").val() + ";height:" + themeHeaderHeight + ";";
|
||||||
|
}
|
||||||
|
|
||||||
|
}else {
|
||||||
|
|
||||||
|
css += "background-image:none;";
|
||||||
|
// Forcer la sélection 150px
|
||||||
|
$("#themeHeaderHeight option:eq(2)").prop("selected", true);
|
||||||
|
|
||||||
|
}
|
||||||
|
css += "}";
|
||||||
|
|
||||||
console.log(widthSize + "-" + heightSize + ' ' + themeHeaderImage );
|
|
||||||
|
|
||||||
|
|
||||||
// Taille, couleur, épaisseur et capitalisation du titre de la bannière
|
// Taille, couleur, épaisseur et capitalisation du titre de la bannière
|
||||||
@ -119,20 +150,6 @@ $("#themeHeaderHeight").on("change", function() {
|
|||||||
}
|
}
|
||||||
}).trigger("change");
|
}).trigger("change");
|
||||||
|
|
||||||
// Récupérer les dimensions de l'image et les place dans des champs cachés
|
|
||||||
$("#themeHeaderImage").on("change", function() {
|
|
||||||
if($(this).val() !== '') {
|
|
||||||
var tmpImg = new Image();
|
|
||||||
var url = "<?php echo helper::baseUrl(false); ?>" + "site/file/source/" + $("#themeHeaderImage").val();
|
|
||||||
tmpImg.src= url;
|
|
||||||
$(tmpImg).on('load',function(){
|
|
||||||
$("#themeHeaderImageWidth").val(tmpImg.width);
|
|
||||||
$("#themeHeaderImageHeight").val(tmpImg.height);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}).trigger("change");
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Affiche / Cache les options de l'image du fond
|
// Affiche / Cache les options de l'image du fond
|
||||||
$("#themeHeaderImage").on("change", function() {
|
$("#themeHeaderImage").on("change", function() {
|
||||||
|
@ -43,16 +43,16 @@
|
|||||||
$imageFile = file_exists('site/file/source/'.$this->getData(['theme', 'header', 'image'])) ? $this->getData(['theme', 'header', 'image']) : "";
|
$imageFile = file_exists('site/file/source/'.$this->getData(['theme', 'header', 'image'])) ? $this->getData(['theme', 'header', 'image']) : "";
|
||||||
if ($this->getData(['theme', 'header', 'image']) &&
|
if ($this->getData(['theme', 'header', 'image']) &&
|
||||||
$imageFile !== '') {
|
$imageFile !== '') {
|
||||||
$sizes = getimagesize('site/file/source/'.$this->getData(['theme','header','image']));
|
$sizes = getimagesize('site/file/source/'.$this->getData(['theme','header','image']));
|
||||||
echo template::text('themeHeaderImageWidth', [
|
}
|
||||||
'value' => $sizes [0],
|
echo template::hidden('themeHeaderImageWidth', [
|
||||||
'noDirty' => true
|
'value' => $sizes [0],
|
||||||
]);
|
'noDirty' => true
|
||||||
echo template::text('themeHeaderImageHeight', [
|
]);
|
||||||
'value' => $sizes [1],
|
echo template::hidden('themeHeaderImageHeight', [
|
||||||
'noDirty' => true
|
'value' => $sizes [1],
|
||||||
]);
|
'noDirty' => true
|
||||||
}
|
]);
|
||||||
echo template::file('themeHeaderImage', [
|
echo template::file('themeHeaderImage', [
|
||||||
'label' => 'Fond',
|
'label' => 'Fond',
|
||||||
'type' => 1,
|
'type' => 1,
|
||||||
|
Loading…
Reference in New Issue
Block a user