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…

Rust-Oleum Painter's Touch 2X Ultra Cover 334046 Spray Paint, Gloss, Sun Yellow, 12 oz, Aerosol Can

Item Code: 7102650
Category Spray Paint
Manufacturer Rust-Oleum

Rust-Oleum Painter's Touch 2X Ultra Cover 334046 Spray Paint, Gloss, Sun Yellow, 12 oz, Aerosol Can

Category Spray Paint
7102650

Description

With the breakthrough double coverage technology of Painter's Touch® 2X Ultra Cover® spray paint, your project could be done twice as fast with two times the coverage. This let's you get the job done faster so you can enjoy it sooner. With indoor and outdoor durability, you can rest assure your project will last. The smooth, gloss finish is available in a large variety of on-trend colors.

Specifications

UNSPSC Code

30.301.301

Weight

1.17lb

Height

8.3in

Width

5.8in

Length

8.4in

Applicable Materials

Metal Plastic Wood

Base Type

Oil

Boiling Point

-37 to 537 deg C

Brand

Rust-Oleum

Category

Spray Paint

Color

Sun Yellow

Compositions

Acetone Propane Titanium Dioxide n-Butane n-Butyl Acetate Naphtha Petroleum Hydrotreated Light Dimethyl Carbonate 1-Methoxy-2-Propyl Acetate Solvent Naphtha Light Aromatic Xylenes (o- m- p- Isomers) Propylene Glycol Monobutyl Ether 124-Trimethylbenzene Et

Container Type

Aerosol Can

Coverage Area

8 to 12 sq-ft

Drying Time

20 min

Flammability Rating

4

Flash Point

-96 deg C

Interior/Exterior

Exterior Interior

Net Content

12 oz

Odor/Scent

Solvent-like

Resists

Fade Moisture UV

Sheen

Gloss

Specific Gravity

0.763

Temperature Rating

50 to 90 deg F

Thinners

Mineral Spirits Xylene

Vehicle Type

Acrylic Modified Alkyd

VOC Content

572 g/l

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

Rust-Oleum Painter's Touch 2X Ultra Cover 334046 Spray Paint, Gloss, Sun Yellow, 12 oz, Aerosol Can

Item Code: 7102650
Category Spray Paint
Manufacturer Rust-Oleum

Rust-Oleum Painter's Touch 2X Ultra Cover 334046 Spray Paint, Gloss, Sun Yellow, 12 oz, Aerosol Can

Category Spray Paint
7102650

Description

With the breakthrough double coverage technology of Painter's Touch® 2X Ultra Cover® spray paint, your project could be done twice as fast with two times the coverage. This let's you get the job done faster so you can enjoy it sooner. With indoor and outdoor durability, you can rest assure your project will last. The smooth, gloss finish is available in a large variety of on-trend colors.

Specifications

UNSPSC Code

30.301.301

Weight

1.17lb

Height

8.3in

Width

5.8in

Length

8.4in

Applicable Materials

Metal Plastic Wood

Base Type

Oil

Boiling Point

-37 to 537 deg C

Brand

Rust-Oleum

Category

Spray Paint

Color

Sun Yellow

Compositions

Acetone Propane Titanium Dioxide n-Butane n-Butyl Acetate Naphtha Petroleum Hydrotreated Light Dimethyl Carbonate 1-Methoxy-2-Propyl Acetate Solvent Naphtha Light Aromatic Xylenes (o- m- p- Isomers) Propylene Glycol Monobutyl Ether 124-Trimethylbenzene Et

Container Type

Aerosol Can

Coverage Area

8 to 12 sq-ft

Drying Time

20 min

Flammability Rating

4

Flash Point

-96 deg C

Interior/Exterior

Exterior Interior

Net Content

12 oz

Odor/Scent

Solvent-like

Resists

Fade Moisture UV

Sheen

Gloss

Specific Gravity

0.763

Temperature Rating

50 to 90 deg F

Thinners

Mineral Spirits Xylene

Vehicle Type

Acrylic Modified Alkyd

VOC Content

572 g/l

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

/** * ⚡ EvoX Variant Script Combo * Handles: preload spinner + instant cache-based switching + EvoX AJAX polling fallback */ (function () { // === 1. Loading effect on variant change (instant feedback) === document.addEventListener('change', function (e) { if (e.target.matches('.product-option select, .variant-selector select')) { console.log("Variant change triggered – showing loading UI"); const productContainer = document.querySelector('.productView, .product'); if (productContainer) { productContainer.style.opacity = '0.5'; productContainer.style.transition = 'opacity 0.2s ease-in-out'; } } }); // === 2. Static Variant Cache (instant DOM update with no AJAX) === const variantCache = { "305446082": { image: "https://cdn11.bigcommerce.com/s-xxxxx/images/stencil/1280x1280/products/1175/10474/calm-water.jpg", price: "$45.99", description: "Trex Enhance® Naturals in Calm Water finish with natural wood grain texture. Low-maintenance composite decking." }, "305446083": { image: "https://cdn11.bigcommerce.com/s-xxxxx/images/stencil/1280x1280/products/1175/10476/toasted-sand.jpg", price: "$48.49", description: "Trex Enhance® Naturals in Toasted Sand finish. Durable, splinter-free and fade-resistant decking." }, "305446084": { image: "https://cdn11.bigcommerce.com/s-xxxxx/images/stencil/1280x1280/products/1175/10478/rocky-harbor.jpg", price: "$48.49", description: "Rocky Harbor color in the Trex Enhance® Naturals collection. Rich tone, weather-resistant surface." }, "305446087": { image: "https://cdn11.bigcommerce.com/s-xxxxx/images/stencil/1280x1280/products/1175/10480/clam-shell.jpg", price: "$42.49", description: "Trex Enhance® Basics in Clam Shell finish. Budget-friendly, easy to clean, and stain-resistant." } }; document.addEventListener('change', function (e) { if (e.target.name === 'VariantID') { const variantId = e.target.value; const variant = variantCache[variantId]; if (variant) { console.log("⚡ Switching to variant:", variantId); const imageEl = document.querySelector('.productView-image img, .product-image img'); if (imageEl) imageEl.src = variant.image; const priceEl = document.querySelector('.product-price .price, .productView-price .price'); if (priceEl) priceEl.textContent = variant.price; const descEl = document.querySelector('.product-description, .productView-description'); if (descEl) descEl.textContent = variant.description; } } }); // === 3. EvoX AJAX fallback (just in case) === window.evoXProductChangeCallback = function () { console.log("EvoX AJAX response received – polling for updated DOM"); const start = Date.now(); const timeoutLimit = 3000; const interval = setInterval(() => { const imageEl = document.querySelector('.product-image img, .product-main-image img'); const priceEl = document.querySelector('.product-price .price, .pricing .price, .productView-price .price'); const descEl = document.querySelector('.product-description, .productView-description, .description'); if (imageEl && priceEl && descEl) { console.log("DOM updated via AJAX"); const imageSrc = imageEl.src; const price = priceEl.textContent.trim(); const description = descEl.textContent.trim(); console.log("Image:", imageSrc); console.log("Price:", price); console.log("Description:", description); const productContainer = document.querySelector('.productView, .product'); if (productContainer) productContainer.style.opacity = '1'; clearInterval(interval); } if (Date.now() - start > timeoutLimit) { console.warn("Timeout: EvoX DOM didn't load in time"); clearInterval(interval); } }, 50); }; })();