Zuri

⭑ she ๋࣭/ ༝ her ⭑

Hiii! I'm zuri! I'm from germany and have a big love for horror and the goth culture.
Aside from that I'm a vfx Artist, specialising in Comp, a professional Yapper, but I also really enjoy doing Dead by Daylight renders!
Thanks for stopping by!(this site is still wip)

Portfolio

Work in progress <3

Portfolio

Eleven


Dustin Henderson


Cheryl Mason


Lara Croft


Thalita Lyra

Commissions

PayPal only
50% upfront Payment
✮ For now DBD render only
(icons coming soon)
✮ Communication via Discord
✮ Custom Textures possible

Pricing:

Dead by Daylight

SizePrice
Ingame Portrait (1x)10€
Half Body (1 Character)15€
Full Body (1 Character)20€
+ Background20€

Every additional Character +15€

Custom Icons

soon! <3


Wanna work together to create something?

Having Trouble?
Discord Name: zurisboring

×
let currentIndex = 0; const items = [...document.querySelectorAll('.custom-lightbox')]; const overlay = document.getElementById('lb'); const img = document.getElementById('lbImg'); function openLightbox(i) { currentIndex = i; img.src = items[i].href; overlay.style.display = 'flex'; } function closeLightbox() { overlay.style.display = 'none'; } function next() { currentIndex = (currentIndex + 1) % items.length; img.src = items[currentIndex].href; } function prev() { currentIndex = (currentIndex - 1 + items.length) % items.length; img.src = items[currentIndex].href; } items.forEach((el, i) => { el.addEventListener('click', e => { e.preventDefault(); openLightbox(i); }); }); document.getElementById('lbClose').onclick = closeLightbox; document.getElementById('lbNext').onclick = next; document.getElementById('lbPrev').onclick = prev; overlay.addEventListener('click', e => { if (e.target === overlay) closeLightbox(); }); document.addEventListener("DOMContentLoaded", () => { const container = document.querySelector('.masonry'); const items = Array.from(container.children); function runMasonry() { const columnCount = window.innerWidth < 600 ? 1 : window.innerWidth < 900 ? 2 : 3; const columnHeights = Array(columnCount).fill(0); const columnWidth = container.clientWidth / columnCount; items.forEach(item => { const img = item.querySelector('img'); const place = () => { const shortest = columnHeights.indexOf(Math.min(...columnHeights)); item.style.width = columnWidth + 'px'; item.style.left = shortest * columnWidth + 'px'; item.style.top = columnHeights[shortest] + 'px'; columnHeights[shortest] += item.offsetHeight + 15; container.style.height = Math.max(...columnHeights) + 'px'; }; if (img.complete) place(); else img.onload = place; }); } // Masonry starten, sobald Galerie sichtbar wird const observer = new IntersectionObserver((entries) => { if (entries[0].isIntersecting) { setTimeout(runMasonry, 150); } }, { threshold: 0.2 }); observer.observe(document.getElementById("galleryWrapper")); window.addEventListener('resize', () => setTimeout(runMasonry, 100)); }); const btn = document.getElementById("toggleGallery"); const wrapper = document.getElementById("galleryWrapper"); let isOpen = true; btn.addEventListener("click", () => { if (isOpen) { wrapper.style.maxHeight = "0px"; wrapper.style.opacity = "0"; btn.textContent = "Galerie anzeigen"; } else { wrapper.style.maxHeight = "5000px"; wrapper.style.opacity = "1"; btn.textContent = "Galerie minimieren"; } isOpen = !isOpen; });