Décorations de noël
4 participants
Forum gratuit : Le forum des forums actifs :: Entraide & Support... :: Problème avec un script, un code :: Archives des problèmes avec un code
Page 1 sur 1 • Partagez
Décorations de noël
Détails techniques
Version du forum : Invision
Poste occupé : Administrateur
Navigateur(s) concerné(s) : Google Chrome
Personnes concernées par le problème : Moi uniquement
Lien du forum : http://www.anciens-cols-bleus.net
Description du problème
Bonjour à toutes et à tousJ'ai mis en place les décos: guirlande en haut du forum, neige, 2 décorations en haut du forum, père noël à gauche et sapin à droite.
Hélas le père noël placé à gauche (point d'interrogation) disparait dès que je mets en place le sapin à droite, il réapparait lorsque je supprime le sapin.
Dernière édition par Charlyguif le Sam 17 Déc 2022 - 18:53, édité 2 fois
Re: Décorations de noël
Bonjour à toutes et à tous
Le problème est toujours présent.
Le problème est toujours présent.
Re: Décorations de noël
Bonjour Charlyguif avez pensé à faire le petit changement dans le script ?
Sinon vous pouvez mettre ce code mais il va falloir mettre des images en gif car ça ne fonctionne pas
pas les images js'
il faut cocher Index et Portail
quand on a trop de codes js ça fonctionne quand même !
Sinon vous pouvez mettre ce code mais il va falloir mettre des images en gif car ça ne fonctionne pas
pas les images js'
- Code:
$(function(){
/* position:"fixed" => positionnée par rapport aux bords de la fenêtre,
* position:"absolute" => positionnée par rapport aux bords de la page,
* top: 7 => l'image est placée à 7 pixels du bord haut,
* left: 8 => l'image est placée à 8 pixels du bord gauche,
* right: 9 => l'image est placée à 9 pixels du bord droit.
*/
$('<img src="url de l'image gif" />').css({position:"absolute", top: 5, left: 5}).appendTo("body");
$('<img src="url de l'image gif" />').css({position:"absolute", top: 5, right: 5}).appendTo("body");
});
il faut cocher Index et Portail
quand on a trop de codes js ça fonctionne quand même !
Re: Décorations de noël
Bonjour,
C'est normal, les deux décorations de même type sont proposées par le même script, une seule peut donc techniquement être affichée à la fois. Si vous mettez le même script deux fois, le 2e écrase le 1er...
Bonne journée
Re: Décorations de noël
Bonjour @Charlyguif,
Pour mettre le sapin à droite, vous allez utiliser le code donné dans le tutoriel, à savoir :
Si vous validez le code, le sapin s'affiche à droite (ce que vous aviez déjà fait auparavant).
Pour mettre le Père Nöel à gauche (en plus), je viens de réécrire le script JS :
Une fois le code validé, vous aurez un Père Noël à gauche :
Passez de bonnes fêtes sur Forumactif
Pour mettre le sapin à droite, vous allez utiliser le code donné dans le tutoriel, à savoir :
Panneau d'administration Modules HTML & JAVASCRIPT - Gestion des codes Javascript
- Code:
var deco = "christmastree";
var color = "white";
var direction = "right";
var attachment = "fixed";
$(function() {
$.getScript('https://script.forumactif.com/13823.js');
});
Si vous validez le code, le sapin s'affiche à droite (ce que vous aviez déjà fait auparavant).
Pour mettre le Père Nöel à gauche (en plus), je viens de réécrire le script JS :
Panneau d'administration Modules HTML & JAVASCRIPT - Gestion des codes Javascript
- Code:
$(function() {
var deco2 = "santa2";
var color2 = "white";
var direction2 = "left";
var attachment2 = "fixed";
var deco_where2 = (typeof direction2 !== 'undefined' && direction2 == "right") ? "right:10px;" : "left:10px;";
var deco_attach2 = (typeof attachment2 !== 'undefined' && attachment2 == "fixed") ? "fixed" : "absolute";
var deco_color2 = (typeof color2 !== 'undefined') ? color2 : '#FFFFFF';
var img_deco2 = '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="deco_tree" viewBox="0 0 512.001 512.001" xml:space="preserve"><g><g><polygon points="367.917,298.167 417.56,298.167 340.807,188.326 387.595,188.326 256,0 124.404,188.326 171.192,188.326 94.44,298.167 144.083,298.167 70.186,403.922 202.479,403.922 202.479,512.001 298.111,512.001 298.111,403.922 441.815,403.922" fill="' + deco_color2 + '"/></g></g></svg>';
var svg_default_attr2 = 'xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" xml:space="preserve"';
if (typeof deco2 !== 'undefined') {
switch (deco2) {
case 'snow2':
img_deco2 = '<svg ' + svg_default_attr2 + ' id="deco_snow2" viewBox="0 0 512 512"><g><g><path d="M501.961,245.961h-42.423l10.335-10.335c3.92-3.92,3.92-10.277,0-14.198c-3.921-3.919-10.276-3.919-14.198,0 l-24.532,24.534h-43.89l30.306-30.306c3.92-3.92,3.92-10.277,0-14.198c-3.921-3.919-10.276-3.919-14.198,0l-44.503,44.505h-78.62 l55.593-55.593h62.937c5.544,0,10.039-4.496,10.039-10.039c0-5.544-4.496-10.039-10.039-10.039h-42.858l31.035-31.035h62.936 c5.544,0,10.039-4.496,10.039-10.039c0-5.544-4.496-10.039-10.039-10.039h-42.857l29.997-29.997c3.92-3.92,3.92-10.277,0-14.198 c-3.921-3.919-10.276-3.919-14.198,0l-29.997,29.997V62.12c0-5.544-4.496-10.039-10.039-10.039s-10.039,4.496-10.039,10.039 v62.936l-31.035,31.035v-42.858c0-5.544-4.496-10.039-10.039-10.039s-10.039,4.496-10.039,10.039v62.937l-55.593,55.593v-78.62 l44.504-44.503c3.92-3.92,3.92-10.277,0-14.198c-3.919-3.917-10.274-3.919-14.198,0l-30.305,30.306v-43.89l44.504-44.503 c3.92-3.92,3.92-10.277,0-14.198c-3.919-3.917-10.274-3.919-14.198,0l-30.305,30.306V10.039C266.039,4.496,261.544,0,256,0 c-5.544,0-10.039,4.496-10.039,10.039v42.423l-30.306-30.306c-3.921-3.919-10.276-3.919-14.198,0c-3.92,3.92-3.92,10.277,0,14.198 l44.505,44.503v43.89l-30.306-30.306c-3.921-3.919-10.276-3.919-14.198,0c-3.92,3.92-3.92,10.277,0,14.198l44.505,44.503v78.62 l-55.593-55.593v-62.937c0-5.544-4.496-10.039-10.039-10.039c-5.544,0-10.039,4.496-10.039,10.039v42.858l-31.035-31.035V62.12 c0-5.544-4.496-10.039-10.039-10.039c-5.544,0-10.039,4.496-10.039,10.039v42.857L89.178,74.98 c-3.921-3.919-10.276-3.919-14.198,0c-3.92,3.92-3.92,10.277,0,14.198l29.997,29.997H62.12c-5.544,0-10.039,4.496-10.039,10.039 c0,5.544,4.496,10.039,10.039,10.039h62.936l31.035,31.035h-42.858c-5.544,0-10.039,4.496-10.039,10.039 c0,5.544,4.496,10.039,10.039,10.039h62.937l55.593,55.593h-78.62l-44.503-44.504c-3.919-3.918-10.274-3.919-14.198,0 c-3.92,3.92-3.92,10.277,0,14.198l30.306,30.305h-43.89l-44.503-44.504c-3.92-3.918-10.275-3.919-14.198,0 c-3.92,3.92-3.92,10.277,0,14.198l30.306,30.305H10.039C4.496,245.961,0,250.456,0,256c0,5.544,4.496,10.039,10.039,10.039h42.423 l-30.306,30.306c-3.92,3.92-3.92,10.277,0,14.198c1.961,1.96,4.53,2.94,7.099,2.94s5.138-0.981,7.099-2.94l44.504-44.505h43.89 l-30.306,30.306c-3.92,3.92-3.92,10.277,0,14.198c1.961,1.96,4.53,2.94,7.099,2.94s5.138-0.981,7.099-2.94l44.504-44.505h78.62 l-55.593,55.593h-62.937c-5.544,0-10.039,4.496-10.039,10.039s4.496,10.039,10.039,10.039h42.858l-31.035,31.035H62.12 c-5.544,0-10.039,4.496-10.039,10.039s4.496,10.039,10.039,10.039h42.857L74.98,422.822c-3.92,3.92-3.92,10.277,0,14.198 c1.961,1.96,4.53,2.94,7.099,2.94s5.138-0.981,7.099-2.94l29.997-29.997v42.857c0,5.544,4.496,10.039,10.039,10.039 s10.039-4.496,10.039-10.039v-62.936l31.035-31.035v42.858c0,5.544,4.496,10.039,10.039,10.039 c5.544,0,10.039-4.496,10.039-10.039v-62.937l55.594-55.593v78.62l-44.504,44.503c-3.92,3.92-3.92,10.277,0,14.198 c3.921,3.918,10.276,3.92,14.198,0l30.305-30.306v43.89l-44.504,44.503c-3.92,3.92-3.92,10.277,0,14.198 c3.921,3.919,10.276,3.92,14.198,0l30.305-30.306v42.423c0,5.544,4.496,10.039,10.039,10.039c5.544,0,10.039-4.496,10.039-10.039 v-42.423l30.306,30.306c1.961,1.96,4.53,2.94,7.099,2.94c2.569,0,5.138-0.981,7.099-2.94c3.92-3.92,3.92-10.277,0-14.198 l-44.504-44.503v-43.89l30.306,30.306c1.961,1.96,4.53,2.94,7.099,2.94c2.569,0,5.138-0.981,7.099-2.94 c3.92-3.92,3.92-10.277,0-14.198l-44.504-44.503v-78.62l55.593,55.593v62.937c0,5.544,4.496,10.039,10.039,10.039 s10.039-4.496,10.039-10.039v-42.858l31.035,31.035v62.936c0,5.544,4.496,10.039,10.039,10.039s10.039-4.496,10.039-10.039 v-42.857l29.997,29.997c1.961,1.96,4.53,2.94,7.099,2.94c2.569,0,5.138-0.981,7.099-2.94c3.92-3.92,3.92-10.277,0-14.198 l-29.997-29.997h42.857c5.544,0,10.039-4.496,10.039-10.039s-4.496-10.039-10.039-10.039h-62.936l-31.035-31.035h42.858 c5.544,0,10.039-4.496,10.039-10.039s-4.496-10.039-10.039-10.039H335.83l-55.592-55.593h78.62l44.503,44.504 c1.961,1.96,4.53,2.94,7.099,2.94c2.569,0,5.138-0.981,7.099-2.94c3.92-3.92,3.92-10.277,0-14.198l-30.305-30.305h43.89 l44.503,44.504c1.961,1.96,4.53,2.94,7.099,2.94s5.138-0.981,7.099-2.94c3.92-3.92,3.92-10.277,0-14.198l-30.305-30.305h42.423 c5.544,0,10.039-4.496,10.039-10.039C512,250.456,507.504,245.961,501.961,245.961z" fill="' + deco_color2 + '"/></g></g><g><g><path d="M482.746,245.961c-12.92,0-12.942,20.078,0,20.078C495.665,266.039,495.686,245.961,482.746,245.961z" fill="' + deco_color2 + '"/></g></g></svg>';
break;
case 'tree2':
img_deco2 = '<svg ' + svg_default_attr2 + ' id="deco_tree2" viewBox="0 0 512.001 512.001"><g><g><polygon points="367.917,298.167 417.56,298.167 340.807,188.326 387.595,188.326 256,0 124.404,188.326 171.192,188.326 94.44,298.167 144.083,298.167 70.186,403.922 202.479,403.922 202.479,512.001 298.111,512.001 298.111,403.922 441.815,403.922" fill="' + deco_color2 + '"/></g></g></svg>';
break;
case 'christmastree2':
img_deco2 = '<svg ' + svg_default_attr2 + ' id="deco_ctree2" viewBox="0 0 512 512"><g><path style="fill:#559E62;" d="M472.949,459.932c-47.729-30.92-78.102-60.746-78.102-60.746 c22.78,2.169,34.747-26.034,34.747-26.034c-22.242-5.424-60.711-43.39-60.711-43.39c22.233-0.547,52.137-17.356,52.137-17.356 c-23.864-3.792-86.65-69.424-86.65-69.424c19.525,2.716,34.981-8.678,34.981-8.678c-19.525-3.792-51.521-43.39-51.521-43.39 c24.402,1.085,44.475-8.678,44.475-8.678c-42.34-26.112-77.173-92.637-92.915-126.716C261.163,63.419,256,74.466,256,86.78 c0-12.314-5.163-23.361-13.39-31.258c-15.742,34.078-50.575,100.604-92.915,126.716c0,0,20.063,9.763,44.475,8.678 c0,0-32.004,39.598-51.53,43.39c0,0,15.464,11.394,34.99,8.678c0,0-62.785,65.631-86.649,69.424c0,0,29.904,16.809,52.137,17.356 c0,0-38.469,37.966-60.711,43.39c0,0,11.967,28.203,34.747,26.034c0,0-30.373,29.826-78.102,60.746 c0,0,107.928,3.254,156.203-26.034c0,0-46.106,41.758-60.746,43.39c0,0,66.169-0.547,91.119-26.034c0,0,13.017,14.64,30.373,17.356 c17.356-2.716,30.373-17.356,30.373-17.356c24.949,25.487,91.119,26.034,91.119,26.034c-14.64-1.631-60.746-43.39-60.746-43.39 C365.021,463.186,472.949,459.932,472.949,459.932"/><g><path style="fill:#EEC319;" d="M275.008,251.661h-11.984c-3.879,0-7.02-3.141-7.02-7.029v-11.976c0-3.888,3.141-7.029,7.02-7.029 h11.984c3.879,0,7.029,3.141,7.029,7.029v11.976C282.037,248.52,278.887,251.661,275.008,251.661"/> <path style="fill:#EEC319;" d="M248.974,173.559H236.99c-3.879,0-7.02-3.141-7.02-7.029v-11.976c0-3.888,3.141-7.029,7.02-7.029 h11.984c3.879,0,7.029,3.141,7.029,7.029v11.976C256.003,170.418,252.853,173.559,248.974,173.559"/> <path style="fill:#EEC319;" d="M214.262,295.051h-11.984c-3.879,0-7.02-3.141-7.02-7.029v-11.976c0-3.888,3.141-7.029,7.02-7.029 h11.984c3.879,0,7.029,3.141,7.029,7.029v11.976C221.292,291.909,218.142,295.051,214.262,295.051"/> <path style="fill:#EEC319;" d="M327.076,312.407h-11.984c-3.879,0-7.02-3.141-7.02-7.029v-11.976c0-3.888,3.141-7.029,7.02-7.029 h11.984c3.879,0,7.029,3.141,7.029,7.029v11.976C334.105,309.265,330.955,312.407,327.076,312.407"/> <path style="fill:#EEC319;" d="M327.076,407.864h-11.984c-3.879,0-7.02-3.141-7.02-7.029V388.86c0-3.888,3.141-7.029,7.02-7.029 h11.984c3.879,0,7.029,3.141,7.029,7.029v11.976C334.105,404.723,330.955,407.864,327.076,407.864"/> <path style="fill:#EEC319;" d="M257.652,355.797h-11.984c-3.879,0-7.02-3.141-7.02-7.029v-11.976c0-3.888,3.141-7.029,7.02-7.029 h11.984c3.879,0,7.029,3.141,7.029,7.029v11.976C264.681,352.655,261.531,355.797,257.652,355.797"/> <path style="fill:#EEC319;" d="M188.229,399.186h-11.984c-3.879,0-7.02-3.141-7.02-7.029v-11.976c0-3.888,3.141-7.029,7.02-7.029 h11.984c3.879,0,7.029,3.141,7.029,7.029v11.976C195.258,396.045,192.108,399.186,188.229,399.186"/></g><path style="fill:#994530;" d="M256,468.61c-6.569-1.024-12.505-3.758-17.356-6.76v41.472h34.712V461.85 C268.505,464.853,262.569,467.586,256,468.61"/><path style="fill:#EEC319;" d="M212.61,43.39C236.596,43.39,256,23.986,256,0c0,23.986,19.404,43.39,43.39,43.39 c-23.986,0-43.39,19.404-43.39,43.39C256,62.794,236.596,43.39,212.61,43.39"/><path style="fill:#7A3726;" d="M299.39,512h-86.78c-4.79,0-8.678-3.879-8.678-8.678c0-4.799,3.888-8.678,8.678-8.678h86.78 c4.79,0,8.678,3.879,8.678,8.678C308.068,508.121,304.18,512,299.39,512"/></svg>';
break;
case 'snowman2':
img_deco2 = '<svg ' + svg_default_attr2 + ' id="deco_snowman2" viewBox="0 0 512.001 512.001"><g><g><path d="M329.511,127.421c8.275,0,14.984-6.709,14.984-14.984s-6.709-14.984-14.984-14.984h-10.299V29.197 C319.212,13.098,306.115,0,290.016,0h-64.563c-16.099,0-29.198,13.098-29.198,29.197v68.255h-10.299 c-8.275,0-14.984,6.709-14.984,14.984s6.71,14.984,14.985,14.984h10.299h1.527c-11.724,13.757-18.823,31.568-18.823,51.016 c0,43.436,35.338,78.774,78.774,78.774c43.435,0,78.773-35.338,78.773-78.774c0-19.448-7.1-37.26-18.823-51.016h1.527H329.511z M252.623,174.027c-0.05,0.49-0.12,0.979-0.22,1.458c-0.101,0.469-0.221,0.949-0.36,1.418c-0.14,0.47-0.31,0.929-0.49,1.379 c-0.189,0.45-0.399,0.899-0.629,1.329c-0.229,0.43-0.49,0.859-0.749,1.259c-0.28,0.41-0.569,0.809-0.879,1.189 c-0.31,0.38-0.639,0.749-0.989,1.089c-0.35,0.35-0.709,0.679-1.089,0.989c-0.38,0.31-0.779,0.609-1.188,0.879 c-0.4,0.27-0.829,0.519-1.26,0.749c-0.43,0.23-0.879,0.44-1.329,0.629c-0.449,0.18-0.908,0.35-1.379,0.489 c-0.47,0.15-0.949,0.27-1.419,0.36c-0.479,0.1-0.969,0.17-1.458,0.22c-0.489,0.05-0.978,0.08-1.468,0.08s-0.989-0.03-1.478-0.08 c-0.479-0.05-0.969-0.12-1.458-0.22c-0.469-0.09-0.949-0.21-1.419-0.36c-0.469-0.14-0.929-0.31-1.379-0.489 c-0.45-0.19-0.899-0.4-1.329-0.629c-0.43-0.23-0.858-0.479-1.259-0.749c-0.41-0.27-0.81-0.569-1.189-0.879 c-0.379-0.31-0.749-0.639-1.089-0.989c-0.35-0.34-0.679-0.709-0.989-1.089c-0.31-0.38-0.599-0.779-0.879-1.189 c-0.27-0.4-0.519-0.829-0.749-1.259c-0.229-0.43-0.439-0.879-0.629-1.329c-0.18-0.45-0.35-0.909-0.49-1.379 c-0.14-0.469-0.27-0.949-0.359-1.418c-0.101-0.479-0.17-0.969-0.22-1.458c-0.051-0.49-0.08-0.989-0.08-1.478 c0-0.479,0.029-0.979,0.08-1.468c0.05-0.49,0.119-0.969,0.22-1.458c0.09-0.47,0.22-0.949,0.359-1.419 c0.141-0.47,0.311-0.929,0.49-1.379c0.19-0.45,0.4-0.899,0.629-1.329s0.479-0.849,0.749-1.259c0.28-0.41,0.569-0.809,0.879-1.179 c0.311-0.38,0.64-0.749,0.989-1.099c0.34-0.35,0.709-0.679,1.089-0.989c0.38-0.31,0.779-0.599,1.189-0.879 c0.4-0.27,0.829-0.519,1.259-0.749c0.43-0.23,0.879-0.44,1.329-0.619c0.45-0.19,0.909-0.36,1.379-0.499 c0.47-0.14,0.949-0.26,1.419-0.36c0.49-0.1,0.979-0.17,1.458-0.22c0.979-0.1,1.969-0.1,2.947,0c0.49,0.05,0.979,0.12,1.458,0.22 c0.469,0.1,0.949,0.22,1.419,0.36c0.47,0.14,0.93,0.31,1.379,0.499c0.45,0.18,0.899,0.39,1.329,0.619 c0.431,0.23,0.859,0.479,1.26,0.749c0.409,0.28,0.809,0.569,1.188,0.879c0.38,0.31,0.739,0.639,1.089,0.989 c0.351,0.35,0.68,0.719,0.989,1.099c0.31,0.37,0.599,0.769,0.879,1.179c0.26,0.41,0.52,0.829,0.749,1.259 c0.23,0.43,0.44,0.879,0.629,1.329c0.181,0.45,0.351,0.909,0.49,1.379c0.139,0.469,0.26,0.949,0.36,1.419 c0.1,0.489,0.17,0.969,0.22,1.458c0.05,0.49,0.08,0.989,0.08,1.468C252.703,173.039,252.673,173.538,252.623,174.027z M292.581,174.027c-0.05,0.49-0.12,0.979-0.22,1.458c-0.101,0.469-0.221,0.949-0.36,1.418c-0.14,0.47-0.31,0.929-0.49,1.379 c-0.189,0.45-0.399,0.899-0.629,1.329c-0.229,0.43-0.49,0.859-0.749,1.259c-0.28,0.41-0.569,0.809-0.879,1.189 c-0.31,0.38-0.639,0.749-0.989,1.089c-0.35,0.35-0.709,0.679-1.099,0.989c-0.37,0.31-0.77,0.609-1.179,0.879 c-0.41,0.27-0.829,0.519-1.26,0.749c-0.43,0.23-0.879,0.44-1.329,0.629c-0.449,0.18-0.908,0.35-1.379,0.489 c-0.469,0.15-0.949,0.27-1.419,0.36c-0.49,0.1-0.969,0.17-1.458,0.22c-0.49,0.05-0.989,0.08-1.477,0.08 c-0.479,0-0.979-0.03-1.469-0.08c-0.489-0.05-0.978-0.12-1.458-0.22c-0.469-0.09-0.949-0.21-1.419-0.36 c-0.469-0.14-0.929-0.31-1.379-0.489c-0.45-0.19-0.899-0.4-1.329-0.629c-0.43-0.23-0.858-0.479-1.259-0.749 c-0.41-0.27-0.81-0.569-1.189-0.879c-0.379-0.31-0.749-0.639-1.089-0.989c-0.35-0.34-0.679-0.709-0.989-1.089 c-0.31-0.38-0.608-0.779-0.879-1.189c-0.27-0.4-0.519-0.829-0.749-1.259c-0.229-0.43-0.438-0.879-0.629-1.329 c-0.18-0.45-0.35-0.909-0.489-1.379c-0.14-0.469-0.26-0.949-0.359-1.418c-0.101-0.479-0.17-0.969-0.22-1.458 c-0.051-0.49-0.08-0.979-0.08-1.468s0.029-0.989,0.08-1.478c0.05-0.49,0.119-0.969,0.22-1.448c0.1-0.479,0.22-0.959,0.359-1.428 c0.141-0.469,0.311-0.929,0.489-1.379c0.19-0.45,0.4-0.899,0.629-1.329c0.23-0.43,0.48-0.849,0.749-1.259 c0.271-0.41,0.569-0.809,0.879-1.179c0.311-0.39,0.64-0.749,0.989-1.099c0.34-0.35,0.709-0.679,1.089-0.989 c0.38-0.31,0.779-0.599,1.189-0.879c0.4-0.26,0.829-0.519,1.259-0.749s0.879-0.44,1.329-0.619c0.45-0.19,0.909-0.36,1.379-0.5 c0.47-0.14,0.949-0.26,1.419-0.36c0.48-0.1,0.97-0.17,1.458-0.22c0.979-0.1,1.969-0.1,2.947,0c0.489,0.05,0.969,0.12,1.458,0.22 c0.469,0.1,0.949,0.22,1.419,0.36c0.471,0.14,0.93,0.31,1.379,0.5c0.45,0.18,0.899,0.39,1.329,0.619 c0.431,0.23,0.85,0.49,1.26,0.749c0.409,0.28,0.809,0.569,1.179,0.879c0.39,0.31,0.749,0.639,1.099,0.989 c0.351,0.35,0.68,0.709,0.989,1.099c0.31,0.37,0.599,0.769,0.879,1.179c0.26,0.41,0.52,0.829,0.749,1.259 c0.23,0.43,0.44,0.879,0.629,1.329c0.181,0.45,0.351,0.909,0.49,1.379c0.139,0.47,0.26,0.949,0.36,1.428 c0.1,0.479,0.17,0.969,0.22,1.448c0.05,0.49,0.07,0.989,0.07,1.478S292.63,173.538,292.581,174.027z" fill="' + deco_color2 + '"/></g></g><g><g><path d="M466.919,224.207c-4.023-7.231-13.146-9.831-20.38-5.808l-17.754,9.88l-1.184-33.541 c-0.291-8.27-7.2-14.727-15.504-14.447c-8.269,0.292-14.738,7.232-14.446,15.504l1.723,48.849l-44.329,24.667 c-6.668-6.377-13.949-12.119-21.762-17.102c-18.648,19.118-44.671,31.009-73.424,31.009c-29.577,0-56.266-12.583-75.009-32.671 c-15.331,9.303-28.753,21.449-39.534,35.698l-40.369-14.651l6.444-49.17c1.075-8.205-4.705-15.729-12.91-16.804 c-8.221-1.076-15.729,4.705-16.804,12.91l-5.582,42.593l-12.806-4.648c-7.779-2.824-16.374,1.195-19.197,8.973 c-2.824,7.78,1.194,16.375,8.973,19.198l30.513,11.074c0.024,0.008,0.048,0.018,0.072,0.026l45.989,16.691 c-8.216,17.87-12.807,37.738-12.807,58.66c0,77.694,63.208,140.903,140.903,140.903s140.903-63.208,140.903-140.903 c0-29.015-8.83-55.999-23.923-78.435l86.396-48.075C468.341,240.561,470.942,231.438,466.919,224.207z M272.642,417.381 c-0.05,0.489-0.12,0.969-0.22,1.458c-0.091,0.469-0.21,0.949-0.36,1.419c-0.14,0.469-0.3,0.929-0.489,1.379 c-0.189,0.45-0.399,0.899-0.629,1.329c-0.229,0.43-0.478,0.859-0.749,1.259c-0.27,0.41-0.569,0.809-0.869,1.189 c-0.31,0.38-0.648,0.749-0.989,1.089c-0.35,0.35-0.719,0.679-1.099,0.989c-0.38,0.31-0.779,0.599-1.179,0.879 c-0.41,0.27-0.839,0.519-1.27,0.749c-0.43,0.23-0.869,0.44-1.318,0.619c-0.45,0.19-0.92,0.36-1.38,0.499 c-0.47,0.14-0.948,0.26-1.428,0.36c-0.479,0.1-0.969,0.17-1.448,0.22c-0.489,0.05-0.988,0.07-1.477,0.07 c-0.489,0-0.989-0.02-1.478-0.07c-0.479-0.05-0.969-0.12-1.448-0.22c-0.478-0.1-0.959-0.22-1.428-0.36 c-0.46-0.14-0.929-0.31-1.379-0.499c-0.45-0.18-0.899-0.39-1.319-0.619c-0.439-0.23-0.858-0.479-1.269-0.749 c-0.4-0.28-0.799-0.569-1.179-0.879c-0.381-0.31-0.749-0.639-1.1-0.989c-0.34-0.34-0.679-0.709-0.989-1.089 c-0.31-0.38-0.599-0.779-0.868-1.189c-0.271-0.4-0.52-0.829-0.749-1.259c-0.23-0.43-0.44-0.879-0.63-1.329 c-0.189-0.45-0.35-0.909-0.499-1.379c-0.14-0.469-0.26-0.949-0.359-1.419c-0.09-0.49-0.17-0.969-0.221-1.458 c-0.05-0.49-0.069-0.989-0.069-1.469c0-0.489,0.02-0.989,0.069-1.478c0.051-0.49,0.131-0.979,0.221-1.458 c0.1-0.469,0.22-0.949,0.359-1.419c0.15-0.469,0.311-0.929,0.499-1.379c0.19-0.45,0.4-0.899,0.63-1.329 c0.229-0.43,0.478-0.859,0.749-1.259c0.27-0.41,0.559-0.809,0.868-1.189c0.311-0.38,0.649-0.749,0.989-1.089 c0.351-0.35,0.719-0.679,1.1-0.989c0.38-0.31,0.778-0.609,1.179-0.879c0.41-0.27,0.829-0.519,1.269-0.749 c0.42-0.23,0.869-0.44,1.319-0.629c0.45-0.18,0.919-0.35,1.379-0.489c0.469-0.15,0.949-0.27,1.428-0.36 c0.479-0.1,0.97-0.17,1.448-0.22c0.979-0.1,1.978-0.1,2.957,0c0.479,0.05,0.97,0.12,1.448,0.22c0.48,0.09,0.959,0.21,1.429,0.36 c0.459,0.14,0.93,0.31,1.38,0.489c0.449,0.19,0.889,0.4,1.318,0.629c0.431,0.23,0.859,0.48,1.27,0.749 c0.399,0.27,0.799,0.569,1.179,0.879c0.38,0.31,0.749,0.639,1.099,0.989c0.341,0.34,0.68,0.709,0.989,1.089 c0.3,0.38,0.6,0.779,0.869,1.189c0.271,0.4,0.52,0.829,0.749,1.259c0.23,0.43,0.44,0.879,0.629,1.329 c0.19,0.45,0.351,0.909,0.49,1.379c0.15,0.47,0.27,0.949,0.36,1.419c0.1,0.479,0.17,0.969,0.22,1.458 c0.05,0.489,0.08,0.989,0.08,1.478C272.721,416.393,272.692,416.892,272.642,417.381z M242.753,367.963 c0-0.489,0.02-0.989,0.069-1.478c0.051-0.49,0.131-0.979,0.221-1.458c0.1-0.469,0.22-0.949,0.359-1.419 c0.15-0.469,0.311-0.929,0.5-1.379c0.19-0.45,0.4-0.899,0.63-1.329c0.229-0.43,0.479-0.859,0.749-1.259 c0.27-0.41,0.559-0.809,0.868-1.189c0.311-0.38,0.649-0.749,0.989-1.089c0.351-0.35,0.719-0.679,1.1-0.989 c0.38-0.31,0.778-0.609,1.179-0.879c0.41-0.27,0.829-0.519,1.269-0.749c0.42-0.23,0.869-0.44,1.319-0.629 c0.45-0.18,0.919-0.35,1.379-0.489c0.469-0.14,0.949-0.27,1.428-0.36c0.479-0.1,0.97-0.17,1.448-0.22c0.979-0.1,1.978-0.1,2.957,0 c0.479,0.05,0.97,0.12,1.448,0.22c0.479,0.09,0.959,0.22,1.428,0.36c0.46,0.14,0.93,0.31,1.38,0.489 c0.449,0.19,0.889,0.4,1.318,0.629c0.431,0.23,0.859,0.48,1.27,0.749c0.399,0.27,0.799,0.569,1.179,0.879 c0.38,0.31,0.749,0.639,1.099,0.989c0.341,0.34,0.68,0.709,0.989,1.089c0.3,0.38,0.6,0.779,0.869,1.189 c0.271,0.4,0.52,0.829,0.749,1.259c0.23,0.43,0.44,0.879,0.629,1.329s0.351,0.909,0.49,1.379c0.15,0.47,0.27,0.949,0.36,1.419 c0.1,0.479,0.17,0.969,0.22,1.458c0.05,0.489,0.08,0.989,0.08,1.478c-0.001,3.937-1.599,7.802-4.386,10.589 c-0.35,0.35-0.719,0.679-1.099,0.989c-0.38,0.31-0.779,0.599-1.179,0.879c-0.41,0.27-0.839,0.519-1.27,0.749 c-0.43,0.23-0.869,0.44-1.318,0.629c-0.45,0.18-0.92,0.35-1.38,0.489c-0.469,0.14-0.948,0.26-1.428,0.36 c-0.479,0.1-0.969,0.17-1.448,0.22c-0.489,0.05-0.988,0.07-1.477,0.07c-0.49,0-0.989-0.02-1.478-0.07 c-0.479-0.05-0.969-0.12-1.448-0.22c-0.479-0.1-0.959-0.22-1.428-0.36c-0.46-0.14-0.929-0.31-1.379-0.489 c-0.45-0.19-0.899-0.4-1.319-0.629c-0.439-0.23-0.858-0.479-1.269-0.749c-0.4-0.28-0.799-0.569-1.179-0.879 c-0.381-0.31-0.749-0.639-1.1-0.989c-0.34-0.35-0.679-0.709-0.989-1.099c-0.31-0.37-0.599-0.769-0.868-1.179 c-0.271-0.41-0.52-0.829-0.749-1.259c-0.23-0.43-0.44-0.879-0.63-1.329c-0.189-0.45-0.35-0.909-0.5-1.379 c-0.14-0.469-0.26-0.949-0.359-1.419c-0.09-0.479-0.17-0.969-0.221-1.458C242.772,368.942,242.753,368.442,242.753,367.963z M272.642,321.482c-0.05,0.479-0.12,0.969-0.22,1.448c-0.091,0.479-0.21,0.959-0.36,1.428c-0.14,0.469-0.3,0.929-0.489,1.379 c-0.189,0.45-0.399,0.899-0.629,1.329c-0.229,0.43-0.478,0.859-0.749,1.259c-0.27,0.41-0.569,0.809-0.869,1.179 c-0.31,0.39-0.648,0.749-0.989,1.099c-0.35,0.35-0.719,0.679-1.099,0.989c-0.38,0.31-0.779,0.599-1.179,0.879 c-0.41,0.27-0.839,0.519-1.27,0.749c-0.43,0.23-0.869,0.44-1.318,0.629c-0.45,0.18-0.92,0.35-1.38,0.489 c-0.47,0.14-0.948,0.27-1.428,0.36c-0.479,0.1-0.969,0.17-1.448,0.22c-0.489,0.05-0.988,0.08-1.477,0.08 c-0.489,0-0.989-0.03-1.478-0.08c-0.479-0.05-0.969-0.12-1.448-0.22c-0.478-0.09-0.959-0.22-1.428-0.36 c-0.46-0.14-0.929-0.31-1.379-0.489c-0.45-0.19-0.899-0.4-1.319-0.629c-0.439-0.23-0.858-0.479-1.269-0.749 c-0.4-0.28-0.799-0.569-1.179-0.879c-0.381-0.31-0.749-0.639-1.1-0.989c-0.34-0.35-0.679-0.709-0.989-1.099 c-0.31-0.37-0.599-0.769-0.868-1.179c-0.271-0.4-0.52-0.829-0.749-1.259c-0.23-0.43-0.44-0.879-0.63-1.329 c-0.189-0.45-0.35-0.909-0.499-1.379c-0.14-0.469-0.26-0.949-0.359-1.428c-0.09-0.48-0.17-0.969-0.221-1.448 c-0.05-0.49-0.069-0.989-0.069-1.478s0.02-0.979,0.069-1.468c0.051-0.49,0.131-0.979,0.221-1.458 c0.1-0.479,0.22-0.949,0.359-1.419c0.15-0.469,0.311-0.929,0.499-1.379c0.19-0.45,0.4-0.899,0.63-1.329 c0.229-0.43,0.478-0.859,0.749-1.259c0.27-0.41,0.559-0.809,0.868-1.189c0.311-0.38,0.649-0.749,0.989-1.089 c0.351-0.35,0.719-0.679,1.1-0.989c0.38-0.31,0.778-0.609,1.179-0.879c0.41-0.27,0.829-0.519,1.269-0.749 c0.42-0.23,0.869-0.44,1.319-0.629c0.45-0.18,0.919-0.35,1.379-0.489c0.469-0.14,0.949-0.27,1.428-0.36 c0.479-0.1,0.97-0.17,1.448-0.22c0.979-0.1,1.978-0.1,2.957,0c0.479,0.05,0.97,0.12,1.448,0.22c0.48,0.09,0.959,0.22,1.429,0.36 c0.459,0.14,0.93,0.31,1.38,0.489c0.449,0.19,0.889,0.4,1.318,0.629c0.431,0.23,0.859,0.48,1.27,0.749 c0.399,0.27,0.799,0.569,1.179,0.879c0.38,0.31,0.749,0.639,1.099,0.989c0.341,0.34,0.68,0.709,0.989,1.089 c0.3,0.38,0.6,0.779,0.869,1.189c0.271,0.4,0.52,0.829,0.749,1.259c0.23,0.43,0.44,0.879,0.629,1.329 c0.19,0.45,0.351,0.909,0.49,1.379c0.15,0.47,0.27,0.939,0.36,1.419c0.1,0.479,0.17,0.969,0.22,1.458 c0.05,0.489,0.08,0.979,0.08,1.468C272.721,320.494,272.692,320.993,272.642,321.482z" fill="' + deco_color2 + '"/></g></g></svg>';
break;
case 'santa2':
img_deco2 = '<svg ' + svg_default_attr2 + ' id="deco_santa2" viewBox="0 0 512 512"><path style="fill:#FF525D;" d="M394.122,68.409c-21.807,11.426-21.87,59.813-21.87,60.367l-149.559,35.447l-6.695-2.862 l-76.252-32.586c0,0,5.535-117.851,168.735-106.404c18.455,1.295,38.925,4.24,61.62,9.201L394.122,68.409z"/><path style="fill:#EF4152;" d="M232.197,122.645c3.217,17.943-3.603,30.319-16.199,38.716l-76.252-32.586 c0,0,5.535-117.851,168.735-106.404C308.48,22.371,217.544,41.003,232.197,122.645z"/><circle style="fill:#FCF8F2;" cx="407.183" cy="36.554" r="36.554"/><path style="fill:#E5E1DC;" d="M393.601,36.554c0-16.174,10.508-29.884,25.066-34.701C415.053,0.657,411.193,0,407.178,0 c-20.188,0-36.554,16.366-36.554,36.554s16.366,36.554,36.554,36.554c4.015,0,7.875-0.657,11.488-1.853 C404.109,66.439,393.601,52.728,393.601,36.554z"/><path style="fill:#EFC1AB;" d="M129.418,298.189c-17.662,0-31.98-14.318-31.98-31.98s14.318-31.98,31.98-31.98h253.166 c17.662,0,31.98,14.318,31.98,31.98s-14.318,31.98-31.98,31.98"/><path style="fill:#FFDAC5;" d="M382.581,240.454v58.497c0,14.162-1.274,36.293-5.055,52.356l-243.055,0.01 c-0.992-4.23-1.817-8.888-2.486-13.703c-1.88-13.473-2.569-28.22-2.569-38.664v-58.497c0-10.726,1.337-21.139,3.854-31.082 l32.627-16.47l93.495-47.207l119.334,63.678C381.244,219.315,382.581,229.728,382.581,240.454z"/><g> <path style="fill:#EFC1AB;" d="M162.672,351.318h-28.199c-3.781-16.063-5.055-38.194-5.055-52.367v-58.497 c0-10.726,1.337-21.139,3.854-31.082l25.891-7.854c-1.013,16.825-1.546,32.189-1.546,38.936v58.497 C157.617,313.124,158.891,335.255,162.672,351.318z"/> <path style="fill:#EFC1AB;" d="M204.823,301.489c-17.891,10.914-49.515,25.682-72.837,36.126 c-1.88-13.473-2.569-28.22-2.569-38.664v-58.497c0-10.726,1.337-21.139,3.854-31.082l32.627-16.47l36.053,12.387 C230.15,205.289,235.581,282.732,204.823,301.489z"/></g><path style="fill:#E5E1DC;" d="M382.583,251.525v47.427c0,14.162-1.274,36.293-5.055,52.356l-243.055,0.01 c-3.781-16.063-5.055-38.194-5.055-52.367v-47.427c0,0,8.282,60.356,55.552,60.356h142.06 C374.301,311.881,382.583,251.525,382.583,251.525z"/><path style="fill:#FF525D;" d="M453.853,512c-4.658-44.951-25.661-85.297-57.254-115.522c-7.635-7.311-15.896-14.026-24.69-20.063 L256.932,323.46l-116.84,52.955C94.921,407.455,63.923,456.187,58.147,512"/><path style="fill:#EF4152;" d="M210.586,376.415l81.309-36.851l-34.964-16.103l-116.84,52.954 C94.921,407.455,63.923,456.187,58.147,512h70.494C134.417,456.187,165.415,407.455,210.586,376.415z"/><path style="fill:#313344;" d="M197.278,280.926c-4.326,0-7.833-3.507-7.833-7.833v-11.061c0-4.326,3.507-7.833,7.833-7.833 c4.326,0,7.833,3.507,7.833,7.833v11.061C205.111,277.419,201.604,280.926,197.278,280.926z"/><path style="fill:#FCF8F2;" d="M372.956,364.68c-0.115,1.807-0.261,3.917-0.48,6.287c-0.428,4.731-1.118,10.486-2.193,16.846 c-0.7,4.136-1.567,8.512-2.632,13.034v0.01c-6.851,28.961-22.121,63.49-56.137,72.9l-7.499-19.468l-48.011,46.226l-45.964-44.272 l-2.037-1.953l-7.509,19.468c-34.016-9.41-49.286-43.938-56.137-72.9v-0.01c-1.065-4.522-1.932-8.909-2.632-13.045 c-0.418-2.507-0.783-4.93-1.097-7.227c-0.48-3.509-0.825-6.736-1.086-9.598c-0.219-2.381-0.376-4.501-0.491-6.308l8.157-2.851 l8.898-3.112l93.527-32.69l7.3-2.548l6.058,2.151l92.754,32.951L372.956,364.68z"/><path style="fill:#313344;" d="M318.338,280.926c-4.326,0-7.833-3.507-7.833-7.833v-11.061c0-4.326,3.507-7.833,7.833-7.833 s7.833,3.507,7.833,7.833v11.061C326.171,277.419,322.664,280.926,318.338,280.926z"/><path style="fill:#FF525D;" d="M225.754,297.218c3.593-13.358,15.791-23.196,30.288-23.196c14.496,0,26.695,9.838,30.288,23.196 l-30.322,44.647L225.754,297.218z"/><g> <path style="fill:#E5E1DC;" d="M372.471,370.963c-0.428,4.731-1.118,10.486-2.193,16.846c-1.076,0.47-2.162,0.93-3.259,1.379 c-38.518,15.812-92.075,19.708-111.01-25.39c-18.946,45.098-72.492,41.202-111.01,25.39c-1.107-0.46-2.204-0.919-3.279-1.389 c-1.076-6.34-1.755-12.094-2.183-16.825c5.88-3.091,11.196-7.405,16.564-12.272c5.692-5.159,11.436-10.945,17.974-16.523 c8.428-7.175,18.162-14.006,30.747-18.758c18.622-7.008,32.23-4.376,41.494,0.522c1.17,0.616,2.277,1.306,3.311,2.068 c2.569,1.838,4.721,4.063,6.413,6.538c1.817-2.642,4.157-5.003,6.945-6.935c1.128-0.794,2.339-1.514,3.624-2.151 c9.243-4.585,22.549-6.82,40.575-0.042c12.334,4.648,21.901,11.29,30.194,18.319c6.705,5.661,12.554,11.551,18.361,16.825 C361.16,363.485,366.529,367.861,372.471,370.963z"/> <path style="fill:#E5E1DC;" d="M210.039,456.243l-2.037-1.953l-7.509,19.468c-34.016-9.41-49.286-43.938-56.137-72.9v-0.01 c-1.065-4.522-1.932-8.909-2.632-13.045c-0.418-2.507-0.783-4.93-1.097-7.227c-0.48-3.509-0.825-6.736-1.086-9.598 c-0.219-2.381-0.376-4.501-0.491-6.308l8.157-2.851l43.259,29.317C190.467,391.135,180.754,426.958,210.039,456.243z"/></g><path style="fill:#FCF8F2;" d="M392.037,353.912c-6.935,4.804-15.509,9.431-25.024,13.348c-38.518,15.802-92.065,19.708-111.01-25.4 c-9.295,22.152-26.935,32.481-47.051,35.395c-20.846,3.008-44.356-1.953-63.96-9.995c-9.504-3.917-18.089-8.543-25.024-13.348 c4.073,0,7.802-0.543,11.29-1.546c16.335-4.637,27.384-18.946,42.821-32.116c8.418-7.175,18.152-14.016,30.747-18.758 c18.622-7.018,32.23-4.376,41.494,0.522c4.063,2.141,7.342,5.128,9.723,8.595c2.559-3.708,6.131-6.883,10.569-9.076 c9.243-4.585,22.549-6.83,40.575-0.042c12.324,4.648,21.891,11.29,30.183,18.308c15.729,13.285,26.852,27.886,43.364,32.565 C384.236,353.369,387.964,353.912,392.037,353.912z"/><path style="fill:#E5E1DC;" d="M178.336,245.7c-2.004,0-4.009-0.764-5.538-2.295c-3.059-3.059-3.059-8.018,0-11.077 c6.539-6.539,15.233-10.14,24.481-10.14c9.247,0,17.942,3.601,24.481,10.14c3.059,3.059,3.059,8.019,0,11.077 c-3.059,3.059-8.019,3.059-11.077,0c-3.58-3.58-8.341-5.552-13.404-5.552c-5.063,0-9.824,1.972-13.404,5.552 C182.345,244.935,180.34,245.7,178.336,245.7z"/><g> <path style="fill:#FCF8F2;" d="M337.281,245.7c-2.004,0-4.009-0.764-5.538-2.295c-3.58-3.58-8.341-5.552-13.404-5.552 c-5.063,0-9.824,1.972-13.404,5.552c-3.059,3.059-8.019,3.059-11.077,0c-3.059-3.059-3.059-8.019,0-11.077 c6.539-6.539,15.234-10.14,24.481-10.14c9.248,0,17.943,3.601,24.481,10.14c3.059,3.059,3.059,8.019,0,11.077 C341.289,244.935,339.285,245.7,337.281,245.7z"/> <path style="fill:#FCF8F2;" d="M390.174,146.687v45.985c0,9.891-8,17.139-17.88,16.335c-56.67-4.637-113.558-5.88-170.343-3.718 c-20.763,0.783-41.515,2.026-62.236,3.718c-9.88,0.804-17.891-6.444-17.891-16.335v-45.985c0-9.891,8.011-18.684,17.891-19.489 c23.144-1.89,46.33-3.217,69.516-3.979h0.01c54.361-1.796,108.806-0.46,163.053,3.979 C382.174,128.003,390.174,136.797,390.174,146.687z"/></g><path style="fill:#E5E1DC;" d="M201.951,205.289c-20.763,0.783-41.515,2.026-62.236,3.718c-9.88,0.804-17.891-6.444-17.891-16.335 v-45.985c0-9.891,8.011-18.684,17.891-19.489c23.144-1.89,46.33-3.217,69.516-3.979h0.01 C209.241,123.219,178.358,156.16,201.951,205.289z"/><path style="fill:#FCF8F2;" d="M290.876,504.171c-3.341,0-6.393-2.217-7.432-5.384c-1.061-3.233,0.124-6.899,2.919-8.856 c5.564-3.895,13.438,0.973,12.224,7.742C297.925,501.364,294.65,504.171,290.876,504.171z"/><path style="fill:#E8E3DD;" d="M210.582,376.419l-1.629,0.836c-20.846,3.008-44.356-1.953-63.96-9.995 c-9.504-3.917-18.089-8.543-25.024-13.348c4.073,0,7.802-0.543,11.29-1.546c16.335-4.637,27.384-18.946,42.821-32.116 c0,0-17.567,23.959-4.762,40.471C182.122,377.234,210.582,376.419,210.582,376.419z"/></svg>';
break;
case 'gift2':
img_deco2 = '<svg ' + svg_default_attr2 + ' id="deco_gift2" viewBox="0 0 504.124 504.124"><path style="fill:#DB5449;" d="M15.754,133.909l236.308,118.154L488.37,133.909v252.062L252.062,504.123L15.754,385.969V133.909z"/><path style="fill:#C54B42;" d="M15.754,157.538v73.649l235.52,115.397l237.095-115.791v-73.255L252.062,273.33L15.754,157.538z"/><path style="fill:#D05045;" d="M252.062,504.123V252.063L31.508,141.786H15.754v244.185L252.062,504.123z"/><path style="fill:#BB483E;" d="M15.754,157.538v73.649l235.52,115.397l0.788-0.394v-73.255v0.394L15.754,157.538z"/><path style="fill:#EB6258;" d="M0,125.638L252.062,0.001l252.062,125.637v16.542L252.062,267.815L0,142.573V125.638z"/><path style="fill:#EFEFEF;" d="M396.603,39.779c-8.271-14.966-25.994-24.025-46.868-24.025c-47.655,0-81.132,44.505-97.674,72.862 c-16.542-28.357-50.412-72.468-97.674-72.468c-30.326,0-51.988,18.511-51.988,43.717c0,44.898,49.231,74.043,148.086,74.043 s151.237-37.415,151.237-73.649C401.723,53.17,400.148,46.081,396.603,39.779z M164.628,88.223 c-11.028-7.483-14.966-15.754-14.966-21.268c0-6.695,6.302-11.815,15.36-11.815c21.268,0,38.203,27.963,47.655,47.262 C187.865,100.432,173.292,93.736,164.628,88.223z M339.495,88.223c-8.665,5.514-23.237,12.209-48.049,14.178 c9.058-19.298,25.994-47.262,47.655-47.262c9.058,0,15.36,5.12,15.36,11.815C354.462,72.469,350.523,80.739,339.495,88.223z"/><path style="fill:#E2574C;" d="M0,126.032l252.062,123.274l252.062-123.274v81.526l-252.85,123.274L0,207.558V126.032z"/><path style="fill:#EFEFEF;" d="M346.585,213.859v-9.058l-94.523-51.2l-94.523,51.2v9.058L94.524,186.29v-12.603l154.387-81.526 l3.151,1.575l3.151-1.575L409.6,173.293v12.603L346.585,213.859z"/><path style="fill:#DCDCDC;" d="M346.585,204.801v251.668l63.015-31.508V173.293L346.585,204.801z"/><path style="fill:#D1D1D1;" d="M94.523,425.354l63.015,31.508V205.195l-63.015-31.902C94.523,173.292,94.523,425.354,94.523,425.354 z"/></svg>';
break;
case 'candy2':
img_deco2 = '<svg ' + svg_default_attr2 + ' id="deco_candy2" viewBox="0 0 512 512"><path style="fill:#F1F2F2;" d="M73.927,501.358c-14.262-14.19-14.262-37.195,0-51.384l285.807-284.327 c21.362-21.25,21.362-55.827,0-77.077c-21.36-21.25-56.116-21.25-77.477,0l-57.678,57.38c-14.262,14.19-37.387,14.19-51.651,0 s-14.263-37.195,0-51.384l57.678-57.378c49.841-49.584,130.94-49.584,180.782,0s49.842,130.261,0,179.845L125.58,501.358 C111.316,515.547,88.19,515.547,73.927,501.358z"/><g><polygon style="fill:#ED5D51;" points="101.574,422.471 183.047,444.189 208.168,419.198 126.694,397.481 "/> <polygon style="fill:#ED5D51;" points="204.877,319.703 286.351,341.42 311.471,316.429 229.999,294.711 "/> <polygon style="fill:#ED5D51;" points="153.226,371.087 234.699,392.804 259.819,367.814 178.346,346.097 "/> <path style="fill:#ED5D51;" d="M73.927,449.974c-14.262,14.189-14.262,37.195,0,51.384c14.263,14.189,37.389,14.189,51.652,0 l30.935-30.775l-81.473-21.717L73.927,449.974z"/> <path style="fill:#ED5D51;" d="M308.181,216.933l81.474,21.718l21.733-21.62c1.12-1.116,2.208-2.252,3.28-3.399l-81.366-21.689 L308.181,216.933z"/> <polygon style="fill:#ED5D51;" points="256.53,268.318 338.002,290.035 363.124,265.044 281.652,243.327 "/> <path style="fill:#ED5D51;" d="M303.622,1.177c-26.602,3.601-52.273,15.507-72.728,35.729l81.854,23.42L303.622,1.177z"/> <path style="fill:#ED5D51;" d="M421.337,48.323l-52.487,52.273c2.352,4.207,4.112,8.655,5.259,13.228h73.958 C445.624,90.471,436.712,67.673,421.337,48.323z"/> <path style="fill:#ED5D51;" d="M398.187,25.742c-18.466-13.936-39.897-22.22-61.888-24.835l11.566,74.951L398.187,25.742z"/> <path style="fill:#ED5D51;" d="M177.344,90.172l81.473,21.718l23.441-23.319c0.895-0.89,1.82-1.729,2.762-2.544l-80.387-23 L177.344,90.172z"/><path style="fill:#ED5D51;" d="M372.306,146.161c-2.64,7.071-6.792,13.704-12.476,19.388l74.745,19.924 c6.455-12.451,10.708-25.746,12.757-39.312H372.306z"/> <path style="fill:#ED5D51;" d="M172.927,145.95c14.263,14.19,37.389,14.19,51.651,0l7.706-7.666l-70.038-18.67 C162.077,129.126,165.632,138.692,172.927,145.95z"/></g><g style="opacity:0.1;"> <path style="fill:#414042;" d="M107.518,472.071l285.806-284.326c21.362-21.25,21.362-55.827,0-77.077 c-7.791-7.751-17.366-12.661-27.421-14.758c14.928,21.245,12.883,50.786-6.168,69.736L73.927,449.974 c-14.262,14.189-14.262,37.195,0,51.384c7.128,7.092,16.471,10.638,25.813,10.641C94.08,498.763,96.667,482.867,107.518,472.071z" /> <path style="fill:#414042;" d="M198.74,156.592c-5.661-13.238-3.075-29.134,7.776-39.929l57.678-57.38 c38.659-38.456,96.117-47.078,143.211-25.88c-50.088-45.758-128.263-44.502-176.8,3.784l-57.678,57.378 c-14.263,14.19-14.263,37.195,0,51.384C180.055,153.042,189.398,156.589,198.74,156.592z"/></g></svg>';
break;
case 'reindeer2':
img_deco2 = '<svg ' + svg_default_attr2 + ' id="deco_reindeer2" viewBox="0 0 512 512"><g><path style="fill:#00B494;" d="M190.475,105.318h-21.873V75.914c0-9.433-7.634-17.081-17.051-17.081s-17.051,7.648-17.051,17.081 v29.404h-13.762c-8.485,0-15.386-7.033-15.386-15.679V27.394c0-9.433-7.634-17.082-17.051-17.082S71.252,17.96,71.252,27.394V89.64 c0,27.484,22.2,49.842,49.487,49.842h52.685v81.199c0,9.433,7.634,17.082,17.052,17.082c9.417,0,17.051-7.648,17.051-17.082 v-98.281C207.526,112.966,199.892,105.318,190.475,105.318z"/><path style="fill:#00B494;" d="M423.501,10.312c-9.417,0-17.051,7.648-17.051,17.082V89.64c0,8.645-6.902,15.679-15.385,15.679 h-13.763V75.914c0-9.433-7.634-17.081-17.051-17.081c-9.417,0-17.051,7.648-17.051,17.081v29.404h-21.872 c-9.417,0-17.051,7.648-17.051,17.082v98.281c0,9.433,7.634,17.082,17.051,17.082s17.051-7.648,17.051-17.082v-81.199h52.686 c27.286,0,49.486-22.358,49.486-49.842V27.394C440.552,17.96,432.917,10.312,423.501,10.312z"/></g><path style="fill:#A67C52;" d="M372.941,248.94c-4.958,0-8.977-4.02-8.977-8.979v-51.267c0-4.96,4.019-8.98,8.977-8.98h130.082 c4.958,0,8.977,4.02,8.977,8.98c0,16.634-8.603,32.083-24.224,43.5c-14.774,10.798-34.267,16.744-54.893,16.744h-59.943V248.94z"/><path id="SVGCleanerId_0" style="fill:#A67C52;" d="M79.117,248.94c-20.624,0-40.119-5.947-54.893-16.744 C8.603,220.776,0,205.328,0,188.694c0-4.96,4.02-8.98,8.978-8.98H139.06c4.958,0,8.977,4.02,8.977,8.98v51.267 c0,4.959-4.019,8.979-8.977,8.979H79.117z"/><g><path id="SVGCleanerId_0_1_" style="fill:#A67C52;" d="M79.117,248.94c-20.624,0-40.119-5.947-54.893-16.744 C8.603,220.776,0,205.328,0,188.694c0-4.96,4.02-8.98,8.978-8.98H139.06c4.958,0,8.977,4.02,8.977,8.98v51.267 c0,4.959-4.019,8.979-8.977,8.979H79.117z"/></g><path style="opacity:0.1;fill:#414042;enable-background:new ;" d="M112.705,226.897c-20.624,0-40.119-5.947-54.892-16.746 c-11.432-8.357-19.087-18.878-22.38-30.437H8.978c-4.958,0-8.978,4.02-8.978,8.98c0,16.634,8.603,32.083,24.224,43.5 c14.774,10.798,34.268,16.744,54.893,16.744h59.944c4.958,0,8.977-4.02,8.977-8.979v-13.063L112.705,226.897L112.705,226.897z"/><path style="fill:#C69C6D;" d="M106.113,179.715V349.89c0,83.835,67.287,151.798,150.291,151.798s150.293-67.962,150.293-151.798 V179.715H106.113z"/><path style="opacity:0.1;fill:#414042;enable-background:new ;" d="M139.558,349.889V179.715h-33.445V349.89 c0,83.835,67.287,151.798,150.291,151.798c5.66,0,11.247-0.321,16.745-0.937C198.006,492.358,139.558,428.023,139.558,349.889z"/><path style="fill:#A67C52;" d="M256,330.107c-38.428,0-69.58,31.464-69.58,70.278v84.079c20.806,10.996,44.47,17.224,69.58,17.224 s48.774-6.228,69.58-17.224v-84.079C325.58,361.571,294.428,330.107,256,330.107z"/><ellipse style="fill:#ED5D51;" cx="256" cy="363.698" rx="33.531" ry="33.593"/><g><path style="fill:#636052;" d="M345.493,301.298c0,10.013-8.114,18.131-18.125,18.131l0,0c-10.008,0-18.127-8.118-18.127-18.131 l0,0c0-10.011,8.119-18.13,18.127-18.13l0,0C337.38,283.168,345.493,291.287,345.493,301.298L345.493,301.298z"/> <path style="fill:#636052;" d="M203.566,301.298c0,10.013-8.115,18.131-18.125,18.131l0,0c-10.008,0-18.126-8.118-18.126-18.131 l0,0c0-10.011,8.119-18.13,18.126-18.13l0,0C195.451,283.168,203.566,291.287,203.566,301.298L203.566,301.298z"/></g></svg>';
break;
default:
img_deco2 = '<svg ' + svg_default_attr2 + ' id="deco_tree2" viewBox="0 0 512.001 512.001"><g><g><polygon points="367.917,298.167 417.56,298.167 340.807,188.326 387.595,188.326 256,0 124.404,188.326 171.192,188.326 94.44,298.167 144.083,298.167 70.186,403.922 202.479,403.922 202.479,512.001 298.111,512.001 298.111,403.922 441.815,403.922" fill="' + deco_color2 + '"/></g></g></svg>';
break
}
}
var css = ".christmas-body2,#christmas_stars2{width:140px;z-index:10000;position:" + deco_attach2 + "; top:5px; " + deco_where2 + "}.christmas-body2{perspective:450px; transform:rotate(-1deg);transform-origin:top;transition:.2s;animation:swing 1s; -webkit-animation: swing 1s; animation-direction:alternate; animation-iteration-count:infinite;}.decoi{max-width:100%}.christmas2{width:140px;height:140px;border:4px solid " + deco_color2 + "; border-radius:50%;padding:16px;box-sizing:border-box;position:relative;top:110px;transform:rotateY(-10deg);transition:.2s;animation:scaler 3s; -webkit-animation: scaler 3s; animation-direction:alternate; animation-iteration-count:infinite;}.christmas2:after,.christmas2:before{content:' ';display:block;background-color:" + deco_color2 + " ;position:absolute}.christmas2:before{height:120px;width:4px;top:-130px;left:64px}.christmas2:after{width:25px;height:14px;top:-16px;left:53px;border-radius: 3px 3px 0 0;}#christmas_star_1,#christmas_star_2,#christmas_star_32,#christmas_star_4,#christmas_star_0{ animation:blink 1s; -webkit-animation: blink 1s; animation-direction:alternate; animation-iteration-count:infinite; } #christmas_star_2 {animation-delay:800ms;animation-duration:3s} #christmas_star_3 {animation-delay:400ms; animation-duration:1.8s} #christmas_star_4 {animation-delay:1.3s} #christmas_star_0 {animation-delay:500ms} @keyframes swing {from {transform: rotate(-1deg);}to{transform: rotate(2deg);}}@keyframes scaler {from {transform: rotateY(-10deg);}to{transform: rotateY(20deg);}}@keyframes blink {from {opacity:0;}to{opacity:1;}}";
$('body').prepend('<div id="christmas_stars2"></div>');
$('body').prepend('<div class="christmas-body2"><div class="christmas2">' + img_deco2 + '</div></div>');
$('head').append("<style>" + css + "</style>");
var stars2 = "";
for (i = 0; i < 5; i++) {
var size2 = Math.round(Math.random() * (35 - 10) + 10) + 'px';
var posX2 = Math.round(Math.random() * (150 - 3) + 3) + 'px';
var posY2 = Math.round(Math.random() * (90 - 3) + 3) + 'px';
var opac2 = Math.random() * (1 - 0.4) + 0.4;
stars2 += '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="christmas_star_' + i + '" x="0px" y="0px" viewBox="0 0 55.867 55.867" style="position:absolute; top:' + posY2 + '; left:' + posX2 + '; opacity:' + opac2 + ';" xml:space="preserve" width="' + size2 + '" height="' + size2 + '"><path d="M55.818,21.578c-0.118-0.362-0.431-0.626-0.808-0.681L36.92,18.268L28.83,1.876c-0.168-0.342-0.516-0.558-0.896-0.558 s-0.729,0.216-0.896,0.558l-8.091,16.393l-18.09,2.629c-0.377,0.055-0.689,0.318-0.808,0.681c-0.117,0.361-0.02,0.759,0.253,1.024 l13.091,12.76l-3.091,18.018c-0.064,0.375,0.09,0.754,0.397,0.978c0.309,0.226,0.718,0.255,1.053,0.076l16.182-8.506l16.18,8.506 c0.146,0.077,0.307,0.115,0.466,0.115c0.207,0,0.413-0.064,0.588-0.191c0.308-0.224,0.462-0.603,0.397-0.978l-3.09-18.017 l13.091-12.761C55.838,22.336,55.936,21.939,55.818,21.578z" fill="' + deco_color2 + '"/></svg>'
}
$('#christmas_stars2').prepend(stars2);
});
Une fois le code validé, vous aurez un Père Noël à gauche :
Passez de bonnes fêtes sur Forumactif
Re: Décorations de noël
Re @Charlyguif,
Il faut appliquer la même correction donnée par @Toryudo l'année dernière dans ce sujet Décorations de noël trop hautes, à savoir :
Lutins
Il faut appliquer la même correction donnée par @Toryudo l'année dernière dans ce sujet Décorations de noël trop hautes, à savoir :
- Code:
.christmas-body2, #christmas_stars2 {
top: 70px !important;
}
Lutins
Re: Décorations de noël
Lutins, grand merci, c'est maintenant ok.
Bonnes fêtes de fin d'année.
Encore merci.
Bonnes fêtes de fin d'année.
Encore merci.
Re: Décorations de noël
Afin de faciliter la gestion des problèmes, si le vôtre est résolu, pensez à :
Vous pouvez également remercier les personnes qui vous ont aidé, en cliquant sur le bouton |
C'est toujours un plaisir d'aider nos Anciens Cols Bleus et Pompons Rouges !
Passez également de bonnes fêtes de fin d'année
Re: Décorations de noël
Bonne soirée à toutes et à tous, grand merci.
Sujets similaires
» décorations de noel
» Décorations de Noël
» Décorations de noël trop hautes
» Décorations de Noël : erreurs dans les scripts
» Décorations de noël
» Décorations de Noël
» Décorations de noël trop hautes
» Décorations de Noël : erreurs dans les scripts
» Décorations de noël
Forum gratuit : Le forum des forums actifs :: Entraide & Support... :: Problème avec un script, un code :: Archives des problèmes avec un code
Page 1 sur 1
Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum