gpt4 book ai didi

javascript - 以 Shopify 的购买按钮为中心的问题

转载 作者:行者123 更新时间:2023-11-28 02:43:30 25 4
gpt4 key购买 nike

有人知道如何将这些“添加到购物车”按钮居中吗?

元素在这里:https://codepen.io/amberbydesign/pen/pdovpL

下面的代码是 Shopify 为链接到外部 JS 文件的 1 if 3 按钮生成的代码。

(我尝试添加 - display: block; margin: 0 auto; 到按钮,但它仍然不起作用)

(function () {
var scriptURL = 'https://sdks.shopifycdn.com/buy-button/latest/buy-button-storefront.min.js';
if (window.ShopifyBuy) {
if (window.ShopifyBuy.UI) {
ShopifyBuyInit();
} else {
loadScript();
}
} else {
loadScript();
}

function loadScript() {
var script = document.createElement('script');
script.async = true;
script.src = scriptURL;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script);
script.onload = ShopifyBuyInit;
}

function ShopifyBuyInit() {
var client = ShopifyBuy.buildClient({
domain: 'neriumskincare-jp.myshopify.com',
apiKey: 'a8fcda28a0b70b31bbea1f51003e2dd9',
appId: '6',
});

ShopifyBuy.UI.onReady(client).then(function (ui) {
ui.createComponent('product', {
id: [8038986699],
node: document.getElementById('product-component-5d341381aec'),
moneyFormat: '%24%7B%7Bamount%7D%7D',
options: {
"product": {
"variantId": "all",
"width": "240px",
"contents": {
"img": false,
"imgWithCarousel": false,
"title": false,
"variantTitle": false,
"price": false,
"description": false,
"buttonWithQuantity": false,
"quantity": false
},
"styles": {
"product": {
"text-align": "left",
"@media (min-width: 601px)": {
"max-width": "100%",
"margin-left": "0",
"margin-bottom": "50px"
}
},
"button": {
"background-color": "#a1d2e6",
"font-family": "Lato, sans-serif",
"font-size": "15px",
"padding-top": "15.5px",
"padding-bottom": "15.5px",
"padding-left": "15px",
"padding-right": "15px",
":hover": {
"background-color": "#91bdcf"
},
":focus": {
"background-color": "#91bdcf"
},
"font-weight": "bold"
},
"quantityInput": {
"font-size": "15px",
"padding-top": "15.5px",
"padding-bottom": "15.5px"
},
"compareAt": {
"font-size": "12px"
}
},
"googleFonts": [
"Lato"
]
},
"cart": {
"contents": {
"button": true
},
"text": {
"title": "Your Shopping Cart",
"empty": "Your cart is empty"
},
"styles": {
"button": {
"background-color": "#a1d2e6",
"font-family": "Lato, sans-serif",
"font-size": "15px",
"padding-top": "15.5px",
"padding-bottom": "15.5px",
":hover": {
"background-color": "#91bdcf"
},
":focus": {
"background-color": "#91bdcf"
},
"font-weight": "bold"
},
"footer": {
"background-color": "#ffffff"
}
},
"googleFonts": [
"Lato"
]
},
"modalProduct": {
"contents": {
"img": false,
"imgWithCarousel": true,
"variantTitle": false,
"buttonWithQuantity": true,
"button": false,
"quantity": false
},
"styles": {
"product": {
"@media (min-width: 601px)": {
"max-width": "100%",
"margin-left": "0px",
"margin-bottom": "0px"
}
},
"button": {
"background-color": "#a1d2e6",
"font-family": "Lato, sans-serif",
"font-size": "15px",
"padding-top": "15.5px",
"padding-bottom": "15.5px",
"padding-left": "15px",
"padding-right": "15px",
":hover": {
"background-color": "#91bdcf"
},
":focus": {
"background-color": "#91bdcf"
},
"font-weight": "bold"
},
"quantityInput": {
"font-size": "15px",
"padding-top": "15.5px",
"padding-bottom": "15.5px"
}
},
"googleFonts": [
"Lato"
]
},
"toggle": {
"styles": {
"toggle": {
"font-family": "Lato, sans-serif",
"background-color": "#a1d2e6",
":hover": {
"background-color": "#91bdcf"
},
":focus": {
"background-color": "#91bdcf"
},
"font-weight": "bold"
},
"count": {
"font-size": "15px"
}
},
"googleFonts": [
"Lato"
]
},
"productSet": {
"styles": {
"products": {
"@media (min-width: 601px)": {
"margin-left": "-20px"
}
}
}
}
}
});
});
}
})();
/*]]>*/

最佳答案

display: block;
margin: 0 auto;

即使在您的 codepen 中也为我工作。

关于javascript - 以 Shopify 的购买按钮为中心的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47044688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com