#hex-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; } .hex { position: absolute; width: 20px; height: 20px; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 20px solid #00ff00; /* Change the color here to green */ transform: rotate(120deg); } document.addEventListener("mousemove", function(event) { const mouseX = event.pageX; const mouseY = event.pageY; const hexBg = document.getElementById("hex-bg"); hexBg.innerHTML = ""; const hexWidth = 30; const hexHeight = 40; const hexRows = Math.ceil(window.innerHeight / hexHeight); const hexCols = Math.ceil(window.innerWidth / hexWidth); for (let row = 0; row < hexRows; row++) { for (let col = 0; col < hexCols; col++) { const hex = document.createElement("div"); hex.classList.add("hex"); const x = col * hexWidth + (row % 2 ? hexWidth / 2 : 0); const y = row * hexHeight; hex.style.top = y + "px"; hex.style.left = x + "px"; hex.style.transform = `translate(${mouseX - window.innerWidth / 2}px, ${mouseY - window.innerHeight / 2}px)`; hexBg.appendChild(hex); } } });
top of page
Image by Justus Menke

CONTACT US

Our goal is to serve our customers and make your job a little easier.

PLANT LOCATIONS

Plant #1 Points

1639 Slanesville Pike

Points WV 25437 

Plant #2 Swanton

479 O’Brien Road

Swanton MD 21561

Hours of Operation

Shipping & Receiving

6:00 am – 3:30 pm Eastern Time

Monday - Thursday

Fiday

6:00 am - 12:00 pm Eastern Time

Saturday- Sunday

Closed

Office Hours

8:00 am – 4:30 pm Eastern Time

Monday - Friday

Saturday- Sunday

Closed

Sales

Ben Yoder - 803-646-1699

Justin Miller - 304-359-8206

Shipping & Receiving

7:00 am – 4:00 pm Eastern Time

Monday - Thursday

Fiday

7:00 am - 12:00 pm Eastern Time

Saturday- Sunday

Closed

Office Hours

8:00 am – 4:30 pm Eastern Time

Monday - Friday

Saturday- Sunday

Closed

Office

General Office - 304-496-9602

Human Resources - taylor@yoderpallets.com

Contact Us

Please take a moment to fill out the form.

Thanks for submitting!

bottom of page