Clarins Multi-Active Nuit Night Cream 50 ml

Varenr: C62939
468 kr.
 
Læg i indkøbsvognen
Leveringstid:  5-8 arbejdsdage

  • Qliro Checkout
  • Hurtig levering - leveringstiden fremgår ved kassen
  • Returret - 100 dages åbent køb
Information
Varemærke: Clarins
Navn: Clarins Multi-Active Nuit Night Cream 50 ml
3666057177651EAN:
  • Specifikationer
  • Manuals & Datasheets
  • Reviews & Questions/Answers

Andre så også på

const main = () => { const $ = jQuery; removeAskasText($) createBadges($) } const removeAskasText = ($) => { const container = $(".price-history-container"); container?.text(""); } const createBadges = ($) => { // Handle styling on mobile. const isMobile = ""; const fontSize = isMobile ? "12px" : "15px"; const marginBottom = isMobile ? "3px" : "0"; // Construct URL. const lang = "DK"; const sku = $("#ArtnrFalt").text().trim(); const url = `https://membran.teknikproffset.se/?modal=Kvfrf6dp3caXMyTB&artnr=${sku}&lang=${lang}`; let lowestPrice; $.ajax({ url: url, success: (data) => { const badges = JSON.parse(data); if (badges.error) return; // Exit if no badges were found. const $askasBadges = $(".PT_Badges"); // Badge area wrapper. if ($askasBadges.length === 0) return; let askasBadgeCount = $askasBadges.toArray().length; if ($askasBadges.find("#Ikon_Kampanj")) { askasBadgeCount--; } const membranBadgeCount = badges.length; let count = askasBadgeCount + membranBadgeCount; if (count > 3) { while (count > 3) { badges.pop() count-- }; }; for (const badge of badges) { const $div = $("
", { text: badge.text }).css({ color: badge.color_text, backgroundColor: badge.color_bg, borderRadius: "30px", padding: "0.2rem 0.65rem", marginRight: "7px", marginBottom: marginBottom, textTransform: "uppercase", fontSize: fontSize, fontWeight: "600", fontFamily: "Lexend, sans-serif" }) $askasBadges.append($div); if (badge?.type === "discount") { addPriceInfo($, badge.lowestPrice); // addCrossedOverPrice($, badge.lowestPrice); } } }, error: (err) => { console.error(err) }, }); if (lowestPrice) return lowestPrice }; const addPriceInfo = ($, lowestPrice) => { const $container = $(".PrisFav"); // const $container = $(".price-history-container"); if ($container.length === 0) return; $container.css({display: "block"}); const $priceInfoWrapper = $("
", { }).css({ position: "relative", zIndex: "1", cursor: "pointer", fontFamily: "Lexend, sans-serif", fontSize: "16px", userSelect: "none", }); const $lowestPriceText = $("", { text: "Tidigare lägsta pris: " }); const $lowestPrice = $("", { text: `${lowestPrice} kr.` }).css({ textDecoration: "line-through" }); const $priceInfo = $("", { text: "Prisinformation." }).css({ fontStyle: "italic", textDecoration: "underline", }); $priceInfoWrapper.append($lowestPriceText); $priceInfoWrapper.append($lowestPrice); $priceInfoWrapper.append(" "); // Add unstyled space. $priceInfoWrapper.append($priceInfo); $container.append($priceInfoWrapper); $(".price-history-container").on("click", (e) => { const text = $("#text"); if (text.length === 0) { const $div = $("
", { id: "text", text: `Priset är nedsatt i förhållande till det lägsta priset på produkten hos Teknikproffset under de senaste 30 dagarna.` }).css({ position: "relative", backgroundColor: "#f2f2f2", padding: "1em", marginBottom: "10px", cursor: "pointer", fontFamily: "Lexend, sans-serif", userSelect: "none", }); const icon = $("").css({ position: "absolute", right: "7px", top: "7px", color: "#9b9b9b", fontSize: "15px", }) const arrow = $("
", { id: "arrow" }).css({ position: "absolute", bottom: "-10px", width: 0, height: 0, borderLeft: "15px solid transparent", borderRight: "15px solid transparent", borderTop: "15px solid #f2f2f2", }) $div.append(arrow); $div.append(icon); $container.prepend($div); } else { text.remove() } }); }; const addCrossedOverPrice = ($, lowestPrice) => { const $priceField = $("#PrisFalt"); const $price = $("
", { text: lowestPrice + " kr", class: "PrisBOLD", }).css({ textDecoration: "line-through", color: "#000", fontSize: "29px", marginRight: "-10px" }); $priceField.append($price) } main();