Anniebuzz | Women Graphic Tees For Reading Time
Search
Account
Log in
Create an account
0
Cart
Close
🔥What's Hot
⏰New Arrivals
⏰New Arrivals
New In Styles
New In Styles
New T-shirts
New Sweatshirts
New V-neck T-shirts
New In Graphics
New In Graphics
New In Sports Theme
New In Hiking Theme
New In Village Theme
New In Reading Theme
New In Dogs Lovers Theme
🎁Season Trending
🎁Season Trending
30% Off Spring Theme
30% Off Summer Theme
30% Off Autumn Theme
30% Off Winter Theme
💝 For Your Holiday
💝 For Your Holiday
🔥Happy Easter
Super Bowl
4th July
Back To School
Happy Thanksgiving
Happy Halloween
Merry Christmas
🎀V-neck & Sweatshirt
🎀V-neck & Sweatshirt
V-neck Theme
V-neck Theme
Hiking V-neck
Village Life V-neck
Dog Lovers V-neck
Happy Easter V-neck
Reading Books V-neck
Sweatshirt Theme
Sweatshirt Theme
Dogs Sweatshirts
Book Sweatshirts
Easter Sweatshirts
Sports Sweatshirts
Village Sweatshirts
Hiking Sweatshirts
🥇Low To $9.99
🥇Low To $9.99
Adorable Gift Low To $9.99
Adorable Bags Low To $9.99
⚡Cute Accessories
⚡Cute Accessories
Cute Bags
Cute Earrings
Cute Bookmarks
Cute Necklaces
Log in
Create an account
🔥What's Hot
⏰New Arrivals
New In Styles
New T-shirts
New Sweatshirts
New V-neck T-shirts
New In Graphics
New In Sports Theme
New In Hiking Theme
New In Village Theme
New In Reading Theme
New In Dogs Lovers Theme
SALE
Merry Christmas Round Neck T-shirt
$18.99
$29.99
-37%
🎁Season Trending
30% Off Spring Theme
30% Off Summer Theme
30% Off Autumn Theme
30% Off Winter Theme
💝 For Your Holiday
🔥Happy Easter
Super Bowl
4th July
Back To School
Happy Thanksgiving
Happy Halloween
Merry Christmas
SALE
ANB - Peace love peeps T-shirt Tee -013302
$19.99
$22.99
-13%
🎀V-neck & Sweatshirt
V-neck Theme
Hiking V-neck
Village Life V-neck
Dog Lovers V-neck
Happy Easter V-neck
Reading Books V-neck
Sweatshirt Theme
Dogs Sweatshirts
Book Sweatshirts
Easter Sweatshirts
Sports Sweatshirts
Village Sweatshirts
Hiking Sweatshirts
SALE
Book Cat And Flowers V-neck T Shirt-014966
$19.99
$30.00
-33%
🥇Low To $9.99
Adorable Gift Low To $9.99
Adorable Bags Low To $9.99
SALE
Never Underestimate A Girl With A Book Printed Linen Bag
$9.99
$15.99
-38%
⚡Cute Accessories
Cute Bags
Cute Earrings
Cute Bookmarks
Cute Necklaces
SALE
💝Souvenir Gift Idea - Funny Book Heart Wood Library Pendant Earrings Creative Love Earings
$5.99
$12.99
-54%
More links
Top searched
SALE
🔥TOP 1 - That's What I Do I Read Books I Know Things T-shirt Tee-010698
$19.99
$29.99
-33%
SALE
🔥TOP 2 - Drink Tea Read Books Be Happy T-shirt Tee-601491
$19.99
$29.99
-33%
SALE
Take A Look, It's In A Book Coffee Round Neck T-shirt-017016
$19.99
$29.99
-33%
SALE
💯Crazy Sale - Oh The Place You‘ll Go When You Read Books T-shirt Tee-010654
$19.99
$29.99
-33%
SALE
🛒New In - World Belongs to Those Who Read T-shirt Tee-611254
$19.99
$29.99
-33%
SALE
🛒New In - Drink Coffee Read Books Be Happy Hot Selling T-shirt Tee-013745
$19.99
$29.99
-33%
Facebook
Twitter
Pinterest
panda linen bag
$6.99
$12.99
-
46%
Quantity
Add to cart
Buy it now
/** @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);
${data.module_title}
To display this card to customers, you need to go to "Booster & Store Conversion" to turn on the trust enhancement feature.
${data.module_title}
${item.title}
${item.title}
${item.content.replaceAll("{store_name}","Anniebuzz | Women Graphic Tees For Reading Time")}
To display this card to customers, you need to go to "Booster & Store Conversion" to turn on the trust enhancement feature.
${data.module_title}
${item.title}
${data.module_title}
${item.title}
${item.content.replaceAll("{store_name}","Anniebuzz | Women Graphic Tees For Reading Time")}
Share
Tweet
Pin it