Branch: 86 South Main Street, Pine Island
0 $0.00
items in your cartto quote To cart
Ooops no items were found.
Try something else.
Ok
Loading…

Krylon 41608 Spray Paint, Gloss, Aluminum, 12 oz, Can

Item Code: 7105877
Category Spray Paint
Manufacturer Krylon
Minimum quantity 6

Krylon 41608 Spray Paint, Gloss, Aluminum, 12 oz, Can

Category Spray Paint
7105877

Description

Krylon high-heat max delivers a durable finish that can stand up to high-temperature swings with maximum corrosion protection to make your paint job last.

Specifications

UNSPSC Code

30.301.301

Weight

1.07lb

Height

8in

Width

2.6in

Length

2.6in

Applicable Materials

Metal

Brand

Krylon

Category

Spray Paint

Color

Aluminum

Compositions

Acetone Propane Xylene Mixed Isomers Light Aliphatic Hydrocarbon Aluminum Ethylbenzene Med. Aliphatic Hydrocarbon Solvent

Container Type

Can

Coverage Area

20 sq-ft

Curing Time

1 hr

Density

1.55

Drying Time

10 min

Flammability Rating

4

Flash Point

-20.2 deg F

Net Content

12 oz

pH Range

7

Resists

Rust

Sheen

Gloss

Temperature Rating

60 to 90 deg F

Thinners

Xylene

Viscosity

20.5 cSt

Call for price
Starting from
$27.05 / CAN
/
- +
Your pick-up branch is 86 South Main Street, Pine Island
Compare

Krylon 41608 Spray Paint, Gloss, Aluminum, 12 oz, Can

Item Code: 7105877
Category Spray Paint
Manufacturer Krylon
Minimum quantity 6

Krylon 41608 Spray Paint, Gloss, Aluminum, 12 oz, Can

Category Spray Paint
7105877

Description

Krylon high-heat max delivers a durable finish that can stand up to high-temperature swings with maximum corrosion protection to make your paint job last.

Specifications

UNSPSC Code

30.301.301

Weight

1.07lb

Height

8in

Width

2.6in

Length

2.6in

Applicable Materials

Metal

Brand

Krylon

Category

Spray Paint

Color

Aluminum

Compositions

Acetone Propane Xylene Mixed Isomers Light Aliphatic Hydrocarbon Aluminum Ethylbenzene Med. Aliphatic Hydrocarbon Solvent

Container Type

Can

Coverage Area

20 sq-ft

Curing Time

1 hr

Density

1.55

Drying Time

10 min

Flammability Rating

4

Flash Point

-20.2 deg F

Net Content

12 oz

pH Range

7

Resists

Rust

Sheen

Gloss

Temperature Rating

60 to 90 deg F

Thinners

Xylene

Viscosity

20.5 cSt

Call for price
Starting from
$27.05 / CAN
/
- +
Your pick-up branch is 86 South Main Street, Pine Island
Compare
SEARCH ×

/** * EvoX AJAX Variant Switch Handler * Updates product image, price, and description dynamically */ function evoXProductChangeCallback() { console.log("Variant switched via AJAX… syncing DOM elements"); // Wait briefly to ensure AJAX content is rendered setTimeout(() => { // Step 1: Update Product Image const imageEl = document.querySelector('.product-image img, .product-main-image img'); const imageSrc = imageEl ? imageEl.src : null; if (imageSrc) { console.log("New Image URL:", imageSrc); // Example: optionally update another image element elsewhere // document.querySelector('#custom-image-preview').src = imageSrc; } // Step 2: Update Product Price const priceEl = document.querySelector('.product-price .price, .pricing .price, .productView-price .price'); const price = priceEl ? priceEl.textContent.trim() : null; if (price) { console.log("Updated Price:", price); // Example: mirror price elsewhere if needed // document.getElementById('price-mirror').innerText = price; } // Step 3: Update Product Description const descEl = document.querySelector('.product-description, .productView-description, .description'); const description = descEl ? descEl.textContent.trim() : null; if (description) { console.log("New Description:", description); // Example: update alternate display box // document.getElementById('custom-desc-box').innerText = description; } // You can extend this logic to update thumbnails, stock status, etc. }, 150); // Wait 150ms to allow AJAX DOM to finish updating }