
Holidays
Introducing our recent project, My Site 9's holiday graphics showcase the essence of the season with vibrant designs and creative elements. Explore our visually appealing graphics that capture the spirit of holidays and enhance the overall user experience on our website.

import wixData from 'wix-data';
import wixLocation from 'wix-location';
$w.onReady(function () {
// Get the current URL
const url = wixLocation.url;
// Extract the ID from the URL
const id = url.split('/').pop();
// Query the "Portfolio/Projects" collection for a specific item
wixData.query("Portfolio/Projects")
.eq('_id', id)
.find()
.then((results) => {
if (results.items.length > 0) {
// Get the item from the results
const item = results.items[0];
// Extract the image URL from the coverImage object
const imageUrl = item.coverImage.imageInfo;
// Extract the image name from the Wix URL
const imageName = imageUrl.split('/').pop().split('#')[0];
// Construct the new URL
const newImageUrl = `https://static.wixstatic.com/media/${imageName}`;
// Set the image source to the new URL
$w("#myImage").src = newImageUrl;
console.log(newImageUrl);
}
})
.catch((err) => {
console.error("Error fetching data: ", err);
});
});