Extra 6% Off [Code: SGG6] + Free Shipping Over $59
NEW
HOT
Bundle Sale
Animals
Garage
Music
Beer Bar Cafe
Warning & Slogan
Beer Bar Cafe
Beer
Spirits
Hot Set
Garage Series
Gas Oil
Service
Car
Motorcycle
Transportation
Car License
Metal Tin Signs
Shop By Shapes
Hot Series
Entertainment
Animals
Multi Style
Wooden Signs
Shop By Size
Popular Series
US Warehouse
SALE
More
Big Size
Acrylic Wall Art
NEW
HOT
Bundle Sale
Animals
Garage
Music
Beer Bar Cafe
Warning & Slogan
Beer Bar Cafe
Beer
Corona
Budweiser
Guinness
Duff Beer
Hamm's Beer
Miller Beer
Busch
Lite Beer
Blue Ribbon
Spirits
Whisky
Cocktail
Rum
Hot Set
Coffee
Foods
Wine
Garage Series
Hot
Gas Oil
Esso
Gulf
Mobil
Sinclair
STP
Texaco
Castrol
BP
76 Oil
Valvoline
Service
Spark Plug
Chain Saw
WD-40
Tire
Mopar
Car
Porsche
MG
Rat Fink
Shelby Cobra
Ferrari
Motorcycle
Kawasaki
Suzuki
Vespa
Ducati
BSA
Transportation
Airplane
Car
Motorcycle
Tractor
Train
Truck
Car License
Country & State
Number
Garage
Beer
Word
Metal Tin Signs
Shop By Shapes
Car License (6*12Inches)
Rectangle Signs (8*12inches)
Rectangle Signs(12*16 Inches)
Round Signs (12*12inches)
Shield Signs (12*12 inches)
Hot Series
Pin Up Girls
Route 66
Warning
Area 51
Landscape
Western Style
Garden
Flag
Entertainment
Music
Sports
Movie
Cartoon
Animals
Chicken
Cat
Dog
Horse
Multi Style
Wooden Signs
Shop By Size
8*12 Inches Wooden Signs
12*16 Inches Wooden Signs
12*12 Inches Round Wooden Signs
12*12 Inches Shield Wooden Signs
Popular Series
Car
Gas Oil
Motorcycle
Pin Up Girls
Service
Warning
Western Style
US Warehouse
SALE
More
Big Size
Big Size-Beer
Big Size-Garage
Big Size-Pin Up Girl
Big Size-Warning
Big Size-Animal
Big Size-Music
Big Size-Western
Acrylic Wall Art
New
Login
Register
Login
Register
1 / 12
You may also like
Don't Like These?
32%
OFF
Black Cats - Wooden Signs(8*12Inch)
1171351
1 sold
$12.27
$17.99
Qty
4 in stock
-
+
Add to Cart -
$12.27
Product Description
Specification:
Material: MDF
Size: 20x30cm/7.87x11.81in
Style: old style
Craft: uv machine
Applicable scenes: home, bar, coffee shop, KTV, and other indoor scenes. (Long term outdoor decoration is not recommended)
Function: Both mast and wall can be used
The square hole is located in the wall, the door, the main door, or the top.
Note:
Intentional processing of the relevant product, or non-defect.
Due to the production cutting process, the product may appear on the surface of the product, but it is a normal phenomenon.
Due to the different monitor and light effect, the actual color of the item might be slightly different from the color showed on the pictures. Thank you!
Please allow 1-2cm measuring deviation due to manual measurement.
Package Content:
1 X Wood Drawing
1 X Linen
You may also like
Don't Like These?
Hot Selling Series
Quick View
50 U.S. States - Car License(6*12Inch) - Garage
Stressgogo
$6.99
Quick View
NEW YORK ASSMAN - Car License(6*12Inch) - Garage
Stressgogo
$6.99
Quick View
Garage - Metal Tin Signs(8*12Inch/12*16Inch) - Garage
Stressgogo
$8.99
Quick View
10%
OFF
Drinking And Bullshitting Is Mandatory - Metal Tin Signs(8*12Inch/12*16Inch)
Stressgogo
$8.99
$9.99
Quick View
Warning - Metal Tin Signs(8*12Inch/12*16Inch) - Bar
Stressgogo
$8.99
Quick View
Beer - Metal Tin Signs(8*12Inch/12*16Inch) - Bar
Stressgogo
$8.99
Quick View
If You Are Looking For A Sign To Drink, This is It - Metal Tin Signs(8*12Inch/12*16Inch) - Bar
Stressgogo
$8.99
Quick View
Alcohol - Metal Tin Signs(8*12Inch/12*16Inch) - Bar
Stressgogo
$8.99
Quick View
Drinking - Metal Tin Signs(8*12Inch/12*16Inch) - Bar
Stressgogo
$8.99
Quick View
Beer Ads - Metal Tin Signs(8*12Inch/12*16Inch) - Bar
Stressgogo
$8.99
View all
Customer Reviews
Here are what our customers say.
Write a Review
Write a Review
Reviews
With Photos
Newest
Newest
Most liked
Highest ratings
Lowest ratings
Customer Reviews
Reviews
With Photos
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
${function(){ const limit = typeof data === 'number' ? data : 0; return `
Pictures/Videos (
${limit || 0}/5
)
` }()}
${(function(){ const closeIcon = '
'; if (item.type === 'image') { return `
${closeIcon}
` } return `
${closeIcon}
` })()}
Submit Comments Anonymously
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.
0