Compte à rebours avant les fêtes
Bienvenue dans notre Calendrier de l’Avent 2025. Nous aimons créer des moments d’émerveillement et de magie, alors quelle meilleure façon de célébrer les fêtes qu’avec un calendrier rempli de cristaux, de quiz et de cadeaux ? Pendant 24 jours à partir du 1er décembre, vous pouvez jouer et tenter de gagner des pièces de notre collection Holiday Cheers, les Ornements Édition Annuelle 2025, et une adhésion à la Swarovski Crystal Society. De plus, les membres nouveaux et existants du Swarovski Club ont la chance exclusive de gagner l’Ornement Édition Annuelle 130e Anniversaire 2025.
Vous pouvez jouer une fois par jour et les gagnants sont choisis par tirage au sort.
Amusez-vous bien et bonne chance !
Vous pouvez jouer une fois par jour et les gagnants sont choisis par tirage au sort.
Amusez-vous bien et bonne chance !
Compte à rebours avant les fêtes
Bienvenue dans le Calendrier de l'Avent Swarovski en ligne !
Vous pouvez jouer immédiatement en tant qu'invité, vous connecter à votre compte Swarovski ou vous inscrire si vous souhaitez devenir membre Swwarovski Club (optionnel).
Tous les membres du Swarovski Club auront la possibilité de gagner un prix supplémentaire. Inscrivez-vous maintenant, jouez tous les jours et augmentez vos chances de gagner.
N'oubliez pas de jouer chaque jour et de profiter d'un moment de magie et d'émerveillement avec Swarovski.
Vous pouvez jouer immédiatement en tant qu'invité, vous connecter à votre compte Swarovski ou vous inscrire si vous souhaitez devenir membre Swwarovski Club (optionnel).
Tous les membres du Swarovski Club auront la possibilité de gagner un prix supplémentaire. Inscrivez-vous maintenant, jouez tous les jours et augmentez vos chances de gagner.
N'oubliez pas de jouer chaque jour et de profiter d'un moment de magie et d'émerveillement avec Swarovski.
Veuillez saisir votre adresse e-mail. Si vous avez déjà un compte, il vous sera demandé de vous connecter.
$(this).closest('#adventCalendarCheckFullCustomerAccountFormConfigWrapper').find('.js-adventCalendarCheckFullCustomerAccountFormConfig')
.formValidation(
{
autoFocus: false,
framework: 'bootstrap',
icon: {
valid: null,
invalid: null,
validating: null
},
fields: {
'values[adventCalendarCheckFullCustomerAccountFormDefinition_email]': {
trigger: 'blur',
validators: {
regexp: {
regexp: new RegExp('^(?=.{0,255}$)(?=.{0,64}@)(?:(?!^\\.)(?!.*\\.@)(?!.*\\.\\.)[a-zA-Z0-9!#.$%&\'*+\/=?^_‘{|}~-]+|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f]){1,62}\")@(?!-)(?!.*\\.-)(?!.*-\\.)(?:[a-zA-Z0-9-]{1,61}\\.){1,126}(?=[a-zA-Z0-9-]*[a-zA-Z][a-zA-Z0-9-]*$)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$', ''),
message: 'Veuillez entrer votre adresse mail.',
message_en: 'Veuillez entrer votre adresse mail.'
},
notEmpty: {
message: 'Veuillez entrer votre adresse mail.',
message_en: 'Veuillez entrer votre adresse mail.'
},
stringLength: {
message: 'Le nombre de caractères de ce champ doit être compris entre 0 et 70',
message_en: 'The number of characters for this field must be between 0 and 70',
min: 0
,
max: 70
},
}
},
}
}
)
.on('success.field.fv', function() {
/* note: we need to check if there is an error in the form, as the plugin does a validation on field level.
Validating the whole form on blur of a field is no option, as the customer does not want to see error messages on all fields
when entering one field. In case of an error on at least one field we disable the submit button manually */
var $form = $(this).closest('form');
if ($form.find('.form-group.has-error').length > 0) {
var $button = $form.find('.js-button');
if (!$button.hasClass('disabled')) {
$button.addClass('disabled');
}
}
})
.on('err.field.fv', function(e, data) {
/*
* On error field validation, enable submit button.
* Source: https://old.formvalidation.io/examples/enabling-submit-button/
*/
data.fv.disableSubmitButtons(false);
$(data.element).attr('aria-invalid', 'true');
// Get error messages
var messages = data.fv.getMessages(data.element);
// â
Announce error to screen readers
if ($(data.element).closest('.js-advent-calendar-container').length > 0 && messages.length > 0 &&
window.ACC &&
window.ACC.adventcalendar &&
typeof ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes === 'function') {
const selectedField = data.element.attr('id');
ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes(selectedField, true);
ACC.adventcalendar.announceToScreenReader('Error: ' + messages[0]);
}
if(data.element.closest('.form-combo-molecule').length){
/* Get the messages of field */
var messages = data.fv.getMessages(data.element);
/* Get the error message content of the field */
var errorContent = data.element.closest('.form-combo-molecule').find('.errors');
/* Get the hidden error message of the field */
var errorField = errorContent.find('.swa-form-input__error-message[data-field="' + data.field + '"][style="display: none;"]');
/* Loop over the messages */
for (var i in messages) {
if (errorField[1] == undefined) {
var newErrorContainer = document.createElement("small");
$(newErrorContainer).attr("class", "swa-form-input__error-message swa-headline-sans--supertiny");
$(newErrorContainer).attr("data-field", data.field);
$(newErrorContainer).attr("data-fv-validator", "callback");
$(newErrorContainer).attr("data-fv-for", $(data.element[0]).attr("name") );
$(newErrorContainer).attr("data-fv-result", "INVALID");
$(newErrorContainer).attr("data-tracked", "true");
$(newErrorContainer).html(messages[i]);
if (errorContent.text().includes(messages[i])) {
$(newErrorContainer).hide();
}
errorContent.append(newErrorContainer);
}
}
}
})
.on('success.field.fv', function(e, data) {
/*
* On success field validation, enable submit button.
* Source: https://old.formvalidation.io/examples/enabling-submit-button/
*/
if ($(data.element).closest('.js-advent-calendar-container').length > 0 &&
window.ACC &&
window.ACC.adventcalendar &&
typeof ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes === 'function') {
const selectedField = data.element.attr('id');
ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes(selectedField, false);
}
data.fv.disableSubmitButtons(false);
// â
Remove aria-invalid on field
$(data.element).attr('aria-invalid', 'false');
/* Remove the field messages */
$errorContent = data.element.closest('.form-combo-molecule').find('.errors');
$errorContent.find('.swa-form-input__error-message[data-field="' + data.field + '"]').remove();
$errorContent.find('.swa-form-input__error-message[data-fv-result="INVALID"]').removeAttr("style");
})
.on('success.form.fv', function() {
var formId = 'adventCalendarCheckFullCustomerAccountForm';
if (!formId || formId === 'cfRequest' || formId === 'cfResponse') {
formId = 'adventCalendarCheckFullCustomerAccountFormDefinition';
}
ACC.tracking.pushFormSubmit(formId);
});
var replaceDatePatternWithValue = function(mandatory, fieldConfigCode, fieldConfigPattern) {
var date = fieldConfigPattern.toUpperCase();
var year = $("#" + fieldConfigCode + "_year").val();
var month = $("#" + fieldConfigCode + "_month").val();
var day = $("#" + fieldConfigCode + "_day").val();
date = date.replace(/[Y]+/, year);
date = date.replace(/[M]+/, month);
date = date.replace(/[D]+/, day);
var hiddenDateField = $('.js-' + fieldConfigCode + '_hidden');
if (mandatory) {
hiddenDateField.val(date);
} else {
hiddenDateField.val(date == "" ? "" : date);
}
};
var triggerFormValidation = function(fieldId, mandatory, fieldCode, dateFormat) {
replaceDatePatternWithValue(mandatory, fieldCode, dateFormat);
$('.js-fieldCode').formValidation('revalidateField', 'values[fieldCode_'+ fieldId + ']');
};
var removeDateMoleculeError = function(molecule) {
if(molecule.hasClass('has-error')){
molecule.removeClass('has-error');
molecule.find('.help-block').find('span').remove();
}
};
Comment jouer ?
Ce que vous gagnez
Capturant la joie de la saison, notre sélection de prix soigneusement choisie comprend des objets de collection festifs ainsi qu’une pièce très spéciale pour célébrer l’anniversaire de Swarovski.
Annual Edition Ball Ornament 2025
Title:
With its chic crescent motif and gold-tone stars, this season’s Annual Edition Ball Ornament reflects the tranquility of the glittering night sky.
Annual Edition Ornament 2025
Title:
Adorned with a Champagne gold-tone tag engraved with the year, 2025’s Annual Edition Ornament boasts 190 facets, cut to reflect the intense radiance of a star in the night sky.
Holiday Cheers Santa Claus & Chimney 2025
Title:
An expressive piece that encapsulates the child-like joy of the holidays, Swarovski’s precision-cut Santa is sure to delight the whole family.
Holiday Cheers Sleigh 2025
Title:
A stylish piece crafted from 489 red, green, and clear crystals, the Holiday Cheers Sleigh will add elegance and exuberance to festivities.
Light Up the Party
Jewelry Styling
Title:
Choose high-octane jewelry to dial up seasonal glamour. From the statement shimmer of cascading earrings and necklaces to the elegance of bracelets and rings gilded with clear crystals, layer on the light and radiate joyful extravagance.
Festive Home Décor
Title:
Introduce sweetness to seasonal home styling with our selection of crystal décor. Set the mood with elegant centerpiece figurines and add joy to festive tablescapes with sophisticated serveware in signature Swarovski shades.
Holiday Tree Styling
Title:
Highlight your holiday style and bathe spaces in beauty with hanging ornaments cut from light-reflecting crystals. Choose from star-shaped baubles for cosmic radiance or add playful charm with festive designs in red, green, and gold.
Holiday Hub
Title:
Find everything you need to make your holiday shine brighter. From light-filled jewelry styled for celebrations to festive figurines and hanging ornaments, our holiday hub is here to guide you through the season. Follow Global Brand Ambassador Ariana Grande’s lead and make this year mesmerizing and memorable.
For any questions on the Online Advent Calendar, please reach out to our Customer Service.
World of Swarovski
Illuminating the many facets of Swarovski from heritage to lifestyle and beyond.
Ocean-Inspired Jewelry
Title:Our new jewelry families are beautiful works of artistry that feature Swarovski Crystal Pearls, and a palette of blue and green Swarovski Crystals.
Wedding Jewelry & Accessories
Title:Fall in love with beautiful designs infused with the brilliance of crystals. From subtle shimmer to all-out glamour, there’s a piece to complement any wedding style, each deserving of a place on your wedding accessories list.
Disney The Lion King x Swarovski
Title:Commemorate a cherished classic with radiant characters.