Enjoy FREE standard delivery on orders over $59.99
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
1 / 7
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
Self-Drilling Anchors Screws
mysite

Self-Drilling Anchors Screws

$23.99 $47.00
0 sold
🛒BUY MORE SAVE MORE
Qty 997 in stock
 

Powerful kits for your home hanging decoration!

Self-Drilling Anchors Screws features expansion design in the ribbed anchors and tapered sharp head that expands on two opposing sides as you tighten the screw, increasing the holding power. Serrated on both sides to increasing the metal anchors hanging power up to 66lbs. Work great on hanging all kind of item on your home decor, such as picture frame, wall lamp, curtains, clock, plants, etc.

Self-Drilling Anchors Screws made of carbon steel with zinc-plated for strong structure and maximum durability. Compared with convention plastic anchor, it no need to drill the holes on the wall, prevent any damage for the wall and no hole left after use. Also, tapered sharp head design allows installation and removal become easier, saving your energy.

FEATURES:

  • Expansion Design:
    The split in the ribbed anchors expand on two opposing sides as you tighten the screw, increasing holding power. Serrated on both sides to increasing the metal anchors hanging power up to 66lbs.
  • Premium Quality Materials:
    Made of carbon steel with zinc-plated for strong structure and maximum durability.
  • Free drilling:
    No need to drill the holes on the wall. Just a (1-2mm) wide stretch on the wall when removing the anchor, it won’t destroy your wall. Prevent any damage for the wall and no hole left after use.
  • Easy to Use:
    Compared with convention plastic anchor, Self-Drilling Anchors Screws with tapered sharp head design allows installation and removal become easier, saving your energy.
  • Wide Application:
    Deep thread design provides strong engagement in 1/4", 3/8", 1/2" or 5/8" gypsum board, drywall, light brick wall board, etc. Work great on hanging all kind of item on your home decor, such as picture frame, wall lamp, curtains, clock, plants, etc.

SPECIFICATIONS:

  • Material:Carbon Steel, Zinc plated
  • Type:12 MM X 30 MM

PACKAGE INCLUDES:

  • 10pcs x Self Drilling Anchors Screws
    - 40pcs x Self Drilling Anchors Screws
    - 80 pcs x Self Drilling Anchors Screws
You May Also Like Don't Like These?
/** @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-1728540568666').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);