@media only screen and (max-width: 600px) { } INTRODUCTION The U.S. Solid Automatic Label Dispenser is a fully automated, portable, and industrial-quality machine designed to streamline your labeling process. It effortlessly dispenses labels from pre-made rolls, featuring an easy-to-read LCD counter that tracks up to 999,999 dispensed labels.With its Power Supply control, you can easily regulate dispensing speed to match your needs.This versatile dispenser is ideal for various applications: from retail stores handling barcodes or security tags, to factories labeling product specifications, and warehouses managing inventory control.No matter your labeling requirements, the U.S. Solid Automatic Label Dispenser offers an easy-to-use, high-quality solution for efficient operation. FEATURES APPLICATIONS SPECIFICATIONS Model USS-LD00001 Brand U.S. Solid Max Label width 140mm (5.51") Max Label Length 200mm (7.87") Max Dispensing Speed 45 circles/min Max. Roll Diameter 250mm (9.84") Power Supply AC110V 60Hz / AC220V 50Hz Weight and Size 4.0 kg 210(L) x 210(W) x 220(H) mm CE CERTIFIED QUALITY & SAFETY WARNING 1.Do not plug in, unplug the cord, or operate the machine with wet hands. 2.This product is only for indoor use and must not be used in wet locations. 3.During the operation of the machine, please do not touch the rewinder shaft, and never stop its rotation. 4.The outer diameter of label roll should not exceed the outer diameter of the flange plate, and the rewinder must not be blocked for a long time.(The machine is in working state but is bound and cannot turn), otherwise the rewinding machine or power source will be damaged. 5.Turn off the power switch and unplug the machine before removing waste material or performing any cleaning or maintenance services. PACKING LIST Automatic Label Dispenser x1 Power Cable x1 User Manual x1 OTHER MODELS Explore Our Full Range of Label Dispensers We offer a variety of models with different sizes, widths and bore diameters to meet your specific label dispenser requirements. VIEW MODEL SELECTION TABLE Download user manual here INTRODUCTION The U.S. Solid Automatic Label Dispenser is a fully automated, portable, and industrial-quality machine designed to streamline your labeling process. It effortlessly dispenses labels from pre-made rolls, featuring an easy-to-read LCD counter that tracks up to 999,999 dispensed labels.With its Power Supply control, you can easily regulate dispensing speed to match your needs.This versatile dispenser is ideal for various applications: from retail stores handling barcodes or security tags, to factories labeling product specifications, and warehouses managing inventory control.No matter your labeling requirements, the U.S. Solid Automatic Label Dispenser offers an easy-to-use, high-quality solution for efficient operation. FEATURES APPLICATION SPECIFICATIONS Model USS-LD00001 Brand U.S. Solid Max Label width 140mm (5.51") Max Label Length 200mm (7.87") Max Dispensing Speed 45 circles/min Max. Roll Diameter 250mm (9.84") Power Supply AC110V 60Hz / AC220V 50Hz Weight and Size 4.0 kg 210(L) x 210(W) x 220(H) mm CE CERTIFIED QUALITY & SAFETY WARNING 1.Do not plug in, unplug the cord, or operate the machine with wet hands. 2.This product is only for indoor use and must not be used in wet locations. 3.During the operation of the machine, please do not touch the rewinder shaft, and never stop its rotation. 4.The outer diameter of label roll should not exceed the outer diameter of the flange plate, and the rewinder must not be blocked for a long time.(The machine is in working state but is bound and cannot turn), otherwise the rewinding machine or power source will be damaged. 5.Turn off the power switch and unplug the machine before removing waste material or performing any cleaning or maintenance services. PACKING LIST: Automatic Label Dispenser x1 Power Cable x1 User Manual x1 OTHER MODELS Explore Our Full Range of Label Dispensers We offer a variety of models with different sizes, widths and bore diameters to meet your specific label dispenser requirements. VIEW MODEL SELECTION TABLE Download user manual here const isMobile = window.matchMedia("only screen and (max-width: 600px)").matches; const desktopContent = document.querySelector('.desktop-only'); const mobileContent = document.querySelector('.mobile-only'); if (isMobile) { console.log('The user is accessing from a mobile phone or tablet device.'); desktopContent.style.display = 'none'; mobileContent.style.display = 'block'; } else { console.log('The user is accessing from a desktop device.'); desktopContent.style.display = 'block'; mobileContent.style.display = 'none'; } function toggleDetailsVisibility(detailsId, summaryId) { var detailsElement = document.getElementById(detailsId); var summaryElement = document.getElementById(summaryId); if (detailsElement && summaryElement) { // Hide the summary element once the details are open detailsElement.addEventListener('toggle', function() { // Check if the details element is currently open if (this.open) { // The details are open, hide the "See More" link/summary. summaryElement.style.display = 'none'; } else { // The details are closed, show the "See More" link/summary. summaryElement.style.display = 'block'; } }); } } function closeDetails(detailsId) { var detailsElement = document.getElementById(detailsId); if (detailsElement) { // Set the open state to false (closed) detailsElement.open = false; // Dispatch a toggle event to trigger the listener that handles hiding the "See Less" link and showing the "See More" link. detailsElement.dispatchEvent(new Event('toggle')); } } // Close logic for desktop view function closeDesktopDetails() { closeDetails('desktop-details-toggle'); } // Close logic for mobile view function closeMobileDetails() { closeDetails('mobile-details-toggle'); } // Initialize the toggle visibility logic on load document.addEventListener('DOMContentLoaded', function() { // Desktop initialization toggleDetailsVisibility('desktop-details-toggle', 'desktop-summary-element'); // Mobile initialization toggleDetailsVisibility('mobile-details-toggle', 'mobile-summary-element'); });