我想创建一个滚动条来一次显示多张图像,就像https://www.apple.com/nz/iphone-xs/上的图像或类似图像(查看“电话”部分)一样。我在Wix平台上尝试使用WixCode,但在下面失败了是我的代码。
export function third_viewportEnter (event, $w) {
let floatOptions = {
"duration": 1200,
"direction": "right",
"delay": 100,
};
$w("#first").hide();
$w("#first").show("float", floatOptions); }
我有3张图片,就像https://www.apple.com/nz/iphone-xs/中的一张一样如何在wix上实现?