Other Plastic Components
Grand Dynasty Industrial (GDI) provides precision plastic injection solutions, covering consumer goods, industrial components, and special structural parts, demonstrating ultimate mold craftsmanship and stable production capacity.
Other Precision Plastic Injection Products
Beyond core automotive and electronic components, Grand Dynasty Industrial (GDI) leverages over 40 years of injection molding experience to provide high-quality customized plastic solutions for various industries. From consumer goods to heavy industrial structural components, we assist clients in realizing product value through strict quality control and diversified material applications.
DIVERSEINJECTION SOLUTIONS
Diversified Product Advantages
Professional mold development and stable production
Extensive experience in diverse special engineering plastic applications
High-efficiency automated mass production scheduling system
Precision two-color and multi-material combination craftsmanship
Ergonomic and aesthetic design
Strict dimensional tolerance and compression testing
Product Showcase: Various Precision Injection Products
// 燈箱放大功能
function openGdiLightbox(src) {
const lb = document.getElementById('gdi-lightbox');
const lbImg = document.getElementById('lb-img');
lbImg.src = src;
lb.style.display = 'flex';
}
// 3D 視差傾斜邏輯
function gdi3D(e, el) {
const rect = el.getBoundingClientRect();
const x = e.clientX - rect.left;
const y = e.clientY - rect.top;
const centerX = rect.width / 2;
const centerY = rect.height / 2;
const rotateX = ((y - centerY) / centerY) * -15;
const rotateY = ((x - centerX) / centerX) * 15;
el.style.transform = "rotateX(" + rotateX + "deg) rotateY(" + rotateY + "deg) scale(1.05)";
}
// 重置效果
function gdiReset(el) {
el.style.transform = "rotateX(0deg) rotateY(0deg) scale(1)";
el.style.boxShadow = "0 2px 8px rgba(0,0,0,0.05)";
el.style.borderColor = "#eee";
}