8 ft. W x 15 ft. D Plastic Storage Shed

$36.05
$299.00
-$262.95
class SpzCustomDiscountFlashsale extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.getFlashSaleApi = "\/api\/storefront\/promotion\/flashsale\/display_setting\/product_setting"; this.timer = null; this.variantId = "1f2e516d-ef93-457d-b34a-efdbccd03b60"; // 促销活动数据 this.flashsaleData = {} } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.templates_ = SPZServices.templatesForDoc(); this.viewport_ = this.getViewport(); // 挂载bind函数 解决this指向问题 this.render = this.render.bind(this); this.resize = this.resize.bind(this); this.switchVariant = this.switchVariant.bind(this); } mountCallback() { // 获取数据 this.getData(); this.element.onclick = (e) => { const cur = this.win.document.querySelector(".app_discount_flashsale_desc"); const setting = this.flashsaleData.product_setting; const landingUrl = `/promotions/discount-default/${this.flashsaleData.discount_info.id}`; const finalUrl = appDiscountUtils.resolveDiscountHref(setting, landingUrl); if (finalUrl && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(finalUrl, '_blank', 'noopener'); } } // 绑定 this.viewport_.onResize(this.resize); // 监听子款式切换,重新渲染 this.win.document.addEventListener('dj.variantChange', this.switchVariant); } unmountCallback() { // 解绑 this.viewport_.removeResize(this.resize); this.win.document.removeEventListener('dj.variantChange', this.switchVariant); // 清除定时器 if (this.timer) { clearTimeout(this.timer); this.timer = null; } } resize() { if (this.timer) { clearTimeout(this.timer) this.timer = null; } this.timer = setTimeout(() => { this.render(); }, 200) } switchVariant(event) { const variant = event.detail.selected; if (variant.product_id == '88be7567-fa4a-4fd9-a5e7-6d9efc4ec38e' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "88be7567-fa4a-4fd9-a5e7-6d9efc4ec38e", product_type: "default", variant_id: this.variantId } this.flashsaleData = {}; this.win.fetch(this.getFlashSaleApi, { method: "POST", body: JSON.stringify(reqBody), headers: { "Content-Type": "application/json" } }).then(async (response) => { if (response.ok) { this.flashsaleData = await response.json(); this.render(); } else { this.clearDom(); } }).catch(err => { this.clearDom(); }); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } render() { this.templates_ .findAndRenderTemplate(this.element, { isMobile: appDiscountUtils.judgeMobile(), isRTL: appDiscountUtils.judgeRTL(), inProductDetail: appDiscountUtils.inProductBody(this.element), flashsaleData: this.flashsaleData, image_domain: this.win.SHOPLAZZA.image_domain, }) .then((el) => { this.clearDom(); this.element.appendChild(el); }) } } SPZ.defineElement('spz-custom-discount-flashsale', SpzCustomDiscountFlashsale);
Quantity
people are viewing this right now
Shipping
/** @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);

Description

Notice: This product is available for flash sale,and stock is limited. In case of payment failure, please check the information carefully and confirm it again.If it fails again,the product is sold out.You can exchange products of other colors or models.If we cause any inconvenience to customers,please understand, Thank you.

  •  Each order limited to 1 pcs of during the event.

  •  100% money back guarantee.

  • US Express Shipping Available

  • Shipping takes 3-10 days depending on location.

  • Payments Via PayPal? and CreditCard.

  •  99.9% of reviewers recommend this product.



  • Made in the USA

  • Water Resistant

  • Warranty Included

  • UV Resistant

  • Assembly Required

  • Features: Rust Resistant


Description
Lifetime's outdoor sheds combine quality materials with innovative design, offering a convenient storage solution that maximizes storage potential. Combined with superior value and the ability to withstand nature's day-to-day abuse. Double-wall, steel-reinforced construction and steel roof trusses make the sheds structurally sound, so they won't buckle during storms or dent during everyday use.

What's Included?

  • 5 Built-In Shelf/Shelves
  • Ventilation
  • 2 Window(s)
  • Floor
  • Skylight
  • Shed
  • Double Doors
  • Door Lock
  • Foundation

Features

  • Require five snow load braces

Product Details

  • Storage Capacity: 749 cubic feet
  • Wind Rating MPH: 65

Floor Included

  • Floor Material: Plastic/Polyethylene

Adult Assembly Required

  • Additional Tools Required: Screw Driver; Adjustable Wrench; Hammer; Pliers; Utility Knife; Monkey Wrench


Overall
8' W x 15' D x 8' H
Interior
7' 6'' W x 14' 6'' D x 7' 10'' H
Door
4' 10 5/16'' W x 6' 4'' H
Shelf
7' 6'' W x 10'' D x 1'' H
Coverage Area
108.75 square feet
Wall Thickness
1 1/2''
Overall Product Weight
697.6 lb.

 

Shed Type
Storage Shed
Primary Material
Plastic; Metal
Material Details
High-density polyethylene and steel
Powder Coated Finish
Yes
Color
Desert Sand
Storage Capacity
749 cubic feet
Foundation Required
Yes
Foundation Included
No
Recommended Foundation Size
94 in. W x 178 in. D
Floor Included
Yes
Impact Resistant Flooring
Yes
Floor Material
Plastic/Polyethylene
Windows Included
Yes
Number of Windows
2
Functional Windows
Yes
Window Lock Included
Yes
Built-In Shelving Included
Yes
Number of Shelves
5
Ventilation Included
Yes
Shingles Included
No
Skylight Included
Yes
Flower Box Included
No
Number of Doors
2
Door Style
Double Door
Padlock Compatible Doors
Yes
Year-Round Use
Yes
Wind Rating
65
Weather Resistant
Yes
Fire Resistant
Yes
Water Resistant
Yes
UV Resistant
Yes
Rust Resistant
Yes
Mildew Resistant
Yes
Compatible Shelf Part Number
0110, 01150, 0130, 0150, 0190
Country of Origin
United States

Assembly

Level of Assembly
Full Assembly Needed
Adult Assembly Required
Yes
Suggested Number of People
3
Additional Tools Required
Screw Driver; Adjustable Wrench; Hammer; Pliers; Utility Knife; Monkey Wrench