Metal Rust Inhibitor Multifunctional Household Industrial Paint

$29.99  - $99.99
🚫 No Sanding: Paint directly on rust. Done in minutes! ⏱️
🧱 Epoxide Barrier: Industrial-grade durability against rain & sun. ☀️
🌿 Home Friendly: Non-toxic, water-based, and easy to clean up. 🏠
💰 Money Saver: Why buy new? Restore your favorites for less. 💸
people are viewing this right now
Color:  Black
Net Content:  300g
🔥Buy more Save more🔥:  BUY 1
Quantity
Description

KEY FEATURES

EFFECTIVE RUST CONVERSION: Transforms rust into a stable, paintable surface by chemically converting existing rust into a protective layer that prevents further corrosion.

WEATHERPROOF PROTECTION: Forms a durable, weather-resistant barrier that shields metal from harsh environmental elements like rain, humidity, and UV rays.

ECO-FRIENDLY & NON-TOXIC: Water-based formula with low VOCs, making it safe for use indoors and outdoors with minimal environmental impact. No harsh chemicals or fumes.

VIBRANT COLOR OPTIONS: Available in a variety of vibrant colors, including red, blue, green and more, enhancing the appearance of metal surfaces while providing protection.

VERSATILE APPLICATION: Provides a tough, rust-resistant barrier that helps extend the lifespan of metal surfaces, including automotive parts, tools, fences, and industrial equipment.

EASY APPLICATION: Ready-to-use formula with smooth application - no mixing required. Package includes a brush for a smooth and even application.

SPEC

Color: White, Black, Red, Gray, Blue, Green

Net Content: 300/500g

Package Includes:

1 * Rust Converter

1 * Brush

NOTES

Color may not appear as exactly as in real life due to variations between the computer monitors.

Please allow a small error due to manual measurement. Please make sure you do not mind before purchasing.

/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);