Free Shipping on All Orders

Search
2 items 432,99 €
Menu
2 items 432,99 €

You may be interested in…

Your cart is currently empty!


New in store

  • 9 pieces custom walnut frames with white mat.
    9 pieces custom walnut frames with white mat.
    948,21 €
    Select options
  • Framed artwork of a white dove on a pink floral background above a blue cabinet with pink vases.
    Handmade Oak Picture Frame
    16,69 € – 194,11 €Price range: 16,69 € through 194,11 €
    Select options
  • Dark Wood and Gold Leaf TV Frame Ornate Samsung Frame TV Bezel, Thin Vintage Gold Wooden Frame TCL tv Cover size 32" 43" 50" 55" 65" 75" 85"
    Thin Dark Wood and Gold Leaf TV Frame
    210,60 €
    Add to cart
  • Natural Soap Hardwood Picture Frame, 1/2 Thin Edge
    Natural Soap Hardwood Picture Frame, 1/2 Thin Edge
    18,68 € – 203,82 €Price range: 18,68 € through 203,82 €
    Select options

Premium Quality Handmade
Wooden Frames

Subscribe to our newsletter!

Categories

TV Frames

Picture Frames

Tablet Frames

DrawMount

Home Decor

Useful links

Shipping Policy

Refund Policy

Privacy Policy

Terms of Service

Legal notice

Cookie preferences

Shop now

TV Frames 22"-60"

Tablet Frame for iPad

DrawMount 55"

TV Frame 85"+

Wall Decor Frame

Samsung Tablet Frames

© 2025 EVENTFRAME SIA

Secure payments with

© All Rights Reserved

Start typing to see posts you are looking for.
Shopping cart
Close
Edit options
document.addEventListener("DOMContentLoaded", function () { const sliders = document.querySelectorAll('.elementor-slides'); sliders.forEach(slider => { // Pievienojam progress bar katram sliderim const progressBar = document.createElement('div'); progressBar.classList.add('custom-progress-bar'); const progressFill = document.createElement('div'); progressFill.classList.add('custom-progress-fill'); progressBar.appendChild(progressFill); slider.appendChild(progressBar); // Atrodam Swiper instance const swiperContainer = slider.querySelector('.swiper'); if (!swiperContainer) return; // Meklējam Swiper konfigurāciju const swiperInstance = swiperContainer.swiper; if (!swiperInstance) { // Ja vēl nav ielādēts, gaidām const checkSwiper = setInterval(() => { if (swiperContainer.swiper) { clearInterval(checkSwiper); setupProgress(swiperContainer.swiper, progressFill); } }, 100); } else { setupProgress(swiperInstance, progressFill); } }); function setupProgress(swiper, progressFill) { const slideDuration = swiper.params.autoplay ? swiper.params.autoplay.delay : 5000; let startTime; function animateProgress() { startTime = Date.now(); progressFill.style.transition = 'none'; progressFill.style.width = '0%'; requestAnimationFrame(updateProgress); } function updateProgress() { const elapsed = Date.now() - startTime; const progress = Math.min((elapsed / slideDuration) * 100, 100); progressFill.style.width = progress + '%'; if (progress < 100) { requestAnimationFrame(updateProgress); } } // Kad mainās slaids swiper.on('slideChangeTransitionStart', animateProgress); animateProgress(); } });