(function () { const TAG = "spz-custom-discount-popup-bxgy"; class SpzCustomPlacementPopup extends SPZ.BaseElement { constructor(element) { super(element); this.deviceTypeMap = { PD_PC_MOBILE: "PD_PC_MOBILE", PD_PC: "PD_PC", PD_MOBILE: "PD_MOBILE" }; this.reportEventMap = { PE_IMPRESSION: 'PE_IMPRESSION',//曝光事件 PE_CLICK: 'PE_CLICK',//点击事件 } this.popup_z_index = 1050; } static deferredMount() { return false; } buildCallback = () => { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback = () => { } // 节流处理 每5s内多次点击 算一次点击上报 throttleReport = this.win.SPZCore.Types.throttle( this.win, (data) => { this.reportData(data) }, 5000 ) // 上报数据 reportData = async(data) => { const reqBody = { placement_id: data.placement_id, event: data.event } this.xhr_.fetchJson(`/api/storefront/promotion/placement/data/report`, { method: "post", body: reqBody }).then((res)=>{ // todo ... }) } doRender_ = (data) => { const popupList = data.popupList || []; if(popupList.length){ // 内容配置 序列化字符转化 popupList.forEach(item => { item.parseConfig = JSON.parse(item.config); }) } return this.templates_ .findAndRenderTemplate(this.element, {popupList}) .then((el) => { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); this.element.appendChild(el); }).then(() =>{ popupList.forEach(item => { // buy x get y 弹窗渲染 this.showPopup(item); }) }) } showPopup = async(itemData) => { // 展示弹窗 符合展示条件的弹窗 const $lightbox_item = document.querySelector(`#popup_bxgy_${itemData.id}`); $lightbox_item && SPZ.whenApiDefined($lightbox_item).then((api)=> { const isPC = this.viewport_.getWidth() >= 768; const isMobile = this.viewport_.getWidth() < 768; const isMatchPCDevice = itemData.device === this.deviceTypeMap.PD_PC_MOBILE || itemData.device === this.deviceTypeMap.PD_PC; const isMatchMobileDevice = itemData.device == this.deviceTypeMap.PD_PC_MOBILE || itemData.device === this.deviceTypeMap.PD_MOBILE; if((isPC && isMatchPCDevice) || (isMobile && isMatchMobileDevice)) { // 根据推送时间 延迟展示弹窗 setTimeout(() => { $lightbox_item.style.zIndex = this.popup_z_index; this.popup_z_index ++; api.open(); }, itemData.delay_seconds * 1000); } }) } setupAction_ = () => { this.registerAction('handleTrack', async(invocation) => { // 如果是主题编辑器则不用处理 if(window.top !== window.self) { return; } const data = invocation.args; const event = data.event; // 点击上报 节流处理 if(event === this.reportEventMap.PE_CLICK) { await this.throttleReport(data); } else { this.reportData(data); } }); this.registerAction('handleLinkto', (invocation) => { const url = invocation.args.url; const isNewOpen = invocation.args.isNewOpen; const target = isNewOpen ? '_blank' : '_self'; if(url) { window.open(url, target); } }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomPlacementPopup) })() (function () { const TAG = "spz-custom-discount-placement"; class SpzCustomDiscountPlacement extends SPZ.BaseElement { constructor(element) { super(element); this.placementTypeMap = { PTT_POPUP: "PTT_POPUP", PTT_BANNER: "PTT_BANNER" }; this.placementTemplateMap = { PT_POPUP_BUY_X_GET_Y: "PT_POPUP_BUY_X_GET_Y", PT_BANNER_BUY_X_GET_Y: "PT_BANNER_BUY_X_GET_Y" }; this.progressMap = { PROGRESS_ONGOING: "PROGRESS_ONGOING", PROGRESS_NOT_STARTED: "PROGRESS_NOT_STARTED", PROGRESS_FINISHED: "PROGRESS_FINISHED", PROGRESS_PAUSED: "PROGRESS_PAUSED" }; } static deferredMount() { return false; } buildCallback = () => { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback = () => { this.handlePlacement(); } // 上报数据 reportData = async(data) => { const reqBody = { placement_id: data.placement_id, event: data.event } const url = `/api/storefront/promotion/placement/data/report`; this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then((res)=>{ // todo ... }) } // 资源位数据获取 getplacementList = async() => { const reqBody = { page_id: window.SHOPLAZZA.meta.page.template_type } const url = `/api/storefront/promotion/placement/list` const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }) return data; } handlePlacement = async() => { const res = await this.getplacementList(); const BXGYPopupList = res.list.filter(item => (item.placement_type == this.placementTypeMap.PTT_POPUP && item.placement_template == this.placementTemplateMap.PT_POPUP_BUY_X_GET_Y)); if(BXGYPopupList.length) { const $spz_custom_popup_bxgy = document.querySelector('#spz_custom_popup_bxgy'); SPZ.whenApiDefined($spz_custom_popup_bxgy).then((api)=> { api.doRender_({popupList: BXGYPopupList}); }) } } doRender_ = (data) => { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); this.element.appendChild(el); }) } setupAction_ = () => { this.registerAction('handleTrack', (invocation) => { const data = invocation.args; this.reportData(data) }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomDiscountPlacement) })()

Authentic discount postage stamps!

We offer authentic wholesale Cheap Forever stamps in bulk, like U.S.A flag stamp, love/ wedding invitation & RSVP stamps, holiday& Christmas stamps 2024, flower, animal, global, etc.
Buy now

Patriotic Stamps

2025 US Flags Booklets / Rolls Forever First Class Postage Stamps

from $18.00 $78.00

2024 US Flags Booklets / Rolls Forever First Class Postage Stamps celebration stamps

from $18.00 $73.00

2023 US Flags / Freedom Booklets Rolls Forever First Class Postage Stamps

from $18.00 $73.00

2022 US Flags Forever First Class Postage Stamps

from $18.00 $65.00

2019 US Flags in Rolls / Booklets Forever First Class Postage Stamps

from $18.00 $65.00

2018 US Flags Forever First Class Postage Stamps

from $18.00 $65.00

2025 US Flags Booklets / Rolls Forever First Class Postage Stamps

from $18.00 $78.00

2024 US Flags Booklets / Rolls Forever First Class Postage Stamps celebration stamps

from $18.00 $73.00

2023 US Flags / Freedom Booklets Rolls Forever First Class Postage Stamps

from $18.00 $73.00

2022 US Flags Forever First Class Postage Stamps

from $18.00 $65.00

2019 US Flags in Rolls / Booklets Forever First Class Postage Stamps

from $18.00 $65.00

2018 US Flags Forever First Class Postage Stamps

from $18.00 $65.00
View more

Flowers Forever Stamps

Flowers from the Garden Forever Stamps

from $18.00 $63.00

Wild Orchids Forever Stamps

from $18.00 $63.00

Tulip Blossoms Forever Stamp

from $18.00 $63.00

Snowy Beauty Stamps 2022

from $18.00 $63.00

Garden Beauty Forever Stamps

from $18.00 $63.00

Sunflower Bouquet Stamps(Two Ounce)

from $18.00 $63.00

Flowers from the Garden Forever Stamps

from $18.00 $63.00

Wild Orchids Forever Stamps

from $18.00 $63.00

Tulip Blossoms Forever Stamp

from $18.00 $63.00

Snowy Beauty Stamps 2022

from $18.00 $63.00
View more

Animals Stamps

2014 US Imperforate Songbirds Forever First Class Postage Stamps

from $18.00 $73.00

2016 US First-Class Forever Stamp - Songbirds in Snow

from $18.00 $73.00

2020 US 'Winter Scenes' Forever Postage Stamps

from $18.00 $73.00

2018 US First-Class Forever Stamp - Birds in Winter

from $18.00 $73.00

Lunar New Year: Year of the Ox Framed Forever Stamps

from $18.00 $63.00

Lunar New Year: Year of the Rabbit Forever Stamps

from $18.00 $63.00

2014 US Imperforate Songbirds Forever First Class Postage Stamps

from $18.00 $73.00

2016 US First-Class Forever Stamp - Songbirds in Snow

from $18.00 $73.00

2020 US 'Winter Scenes' Forever Postage Stamps

from $18.00 $73.00

2018 US First-Class Forever Stamp - Birds in Winter

from $18.00 $73.00
View more

Love/Wedding Stamps

2023 Love Forever Stamps

from $18.00 $63.00

2025 Love stamp 5 Books/100Pcs

from $18.00 $66.00

2020 US Made of Hearts Forever First-Class Postage Stamps Wedding

from $18.00 $73.00

Love 2024 Stamps

from $18.00 $63.00

U.S. 2022 Love Forever Stamps Wedding

from $28.99 $73.00

2022 Love Forever Stamps

from $18.00 $63.00

2023 Love Forever Stamps

from $18.00 $63.00

2025 Love stamp 5 Books/100Pcs

from $18.00 $66.00

2020 US Made of Hearts Forever First-Class Postage Stamps Wedding

from $18.00 $73.00

Love 2024 Stamps

from $18.00 $63.00
View more

Holiday Stamps

Sparkling Holidays Stamps 2018

from $18.00 $63.00

Holiday Delights Forever Stamps

from $18.00 $63.00

Holiday Wreaths Forever Stamps

from $18.00 $63.00

100PCS-Holy Family 2012

from $18.00 $63.00

Holy Family Holiday Christmas

from $18.00 $66.00

Florentine Madonna and Child Christmas Stamps 2016

from $18.00 $63.00

Sparkling Holidays Stamps 2018

from $18.00 $63.00

Holiday Delights Forever Stamps

from $18.00 $63.00

Holiday Wreaths Forever Stamps

from $18.00 $63.00

100PCS-Holy Family 2012

from $18.00 $63.00
View more

Hot Sale

Message Monsters Forever Stamp

from $18.00 $63.00

Wedding Roses Forever Stamps

from $18.00 $63.00

Celebration Boutonniere Stamps(Two Ounce)

from $18.00 $63.00

2018 U.S. Flag Forever Stamps

from $18.00 $66.00

Thank You Forever Stamps

from $18.00 $63.00

Hearts Blossom Forever Stamps

from $18.00 $63.00

Message Monsters Forever Stamp

from $18.00 $63.00

Wedding Roses Forever Stamps

from $18.00 $63.00

Celebration Boutonniere Stamps(Two Ounce)

from $18.00 $63.00

2018 U.S. Flag Forever Stamps

from $18.00 $66.00

Thank You Forever Stamps

from $18.00 $63.00

Hearts Blossom Forever Stamps

from $18.00 $63.00

2017 U.S. Flag Forever Stamps

from $18.00 $66.00

2022 Love Forever Stamps

from $18.00 $63.00

Customer reviews

4 Reviews
Nat******in

I have them too, the stamps came quickly, l recently used the 200 stamps l ordered andhad 200 stamps mailed around my Christmas time thank you and they all

Dor******nd

have purchased stamps twice within the last three months, Both transactions werevery smooth and the stamps were as advertised. Very pleased and will purchase again.

Ama******ra

I was also afraid of being cheated before purchasing because l need to use a very largeamount of stamps every year, so after comparing some l purchased a small portion

Nat******in

I have now purchased around $10,000 in stamps with no issues or concerns at all. wasa bit skeptical for my first order since it was rather large and they were

First Class Mail
All stamps are shipped via Free First Class and orders are processed in about 24 hours, with logistics taking about 3-7 business days
Payment security
Paypal payment, so there is no worry about payment issues.
Paypal
100% Protection of your property security
Free delivery worldwide
Short content about your store