Minidrivhus 69 x 49 x 95cm

Minidrivhus 69 x 49 x 95cm

23 Se000051347650
Se000051347650
NOK250.00

Minidrivhus 69 x 49 x 95cm

  • For balkonger eller små hager. Utmerket for småplanter, frø etc.
  • Enkel montering/demontering uten verktøy
Se000051347650
NOK250.00

Add to wishlist
Total Rating Total Rating:

0 1 2 3 4
0/5 - 0 reviews

View ratings
0 1 2 3 40
0 1 2 3 00
0 1 2 0 10
0 1 0 1 20
0 0 1 2 30

 Add Review View Reviews View Reviews

RASK LEVERING

TRYGG NETTHANDEL

SERTIFISERTE PRODUKTER
 

Minidrivhus 69 x 49 x 95cm

Produktinformasjon:

  • Produkttype – minidrivhus
  • Farge – Klar, grønn
  • Lengde – 69 cm
  • Bredde – 49 cm
  • Høyde – 95 cm
  • Areal – 0.34m2
  • Rammemateriale – Metallegering
  • Belegningsmateriale – Polyetylen
  • Antall vinduer – 2
Se000051347650

Datablad

bredde
0cm - 100cm
drivhustype
Minidrivhus
lengde
0m - 1m
Rammemateriale
Annet
vegg og tak
PVC

Reviews Reviews (0)

Based on 0 reviews - 0 1 2 3 4 0/5
Product added to wishlist
// Función para cargar más productos (puedes adaptarla para hacer peticiones AJAX) function cargarProductos() { for (let i = 1; i <= 10; i++) { const producto = document.createElement('div'); producto.className = 'producto'; producto.textContent = `Producto ${((window.pagina - 1) * 10) + i}`; document.getElementById('product-list').appendChild(producto); } }// Variable para controlar la página actual window.pagina = 1;// Crear un elemento "observador" invisible al final de la lista const sentinel = document.createElement('div'); sentinel.id = 'sentinel'; document.body.appendChild(sentinel);// Configurar Intersection Observer const observer = new IntersectionObserver((entries) => { if (entries[0].isIntersecting) { window.pagina++; cargarProductos(); } }, { rootMargin: '100px', });// Observar el elemento "sentinel" observer.observe(document.getElementById('sentinel'));// Cargar los primeros productos cargarProductos(); // Crear elementos const picture = document.createElement('picture');const sourceWebp = document.createElement('source'); sourceWebp.setAttribute('srcset', 'https://drivhussenter.no/img/cms/baneriai/Drivhus VG.webp'); sourceWebp.setAttribute('type', 'image/webp');const img = document.createElement('img'); img.setAttribute('loading', 'eager'); img.setAttribute('src', 'https://drivhussenter.no/img/cms/baneriai/Drivhus VG.jpg'); img.setAttribute('width', '1160'); img.setAttribute('height', '800'); img.setAttribute('alt', '');picture.appendChild(sourceWebp); picture.appendChild(img);// Agregar al DOM en un lugar específico document.getElementById('contenedor-de-la-imagen').appendChild(picture);