Molding Machines
Grand Dynasty Industrial (GDI) introduces Japanese Sumitomo all-electric injection molding machines and Yushin automated robots to build a high-precision molding machine system.
Advanced Molding Systems for High-Efficiency Production
Grand Dynasty Industrial (GDI) recognizes that advanced equipment is the foundation of consistent, high-quality production. We utilize premium all-electric injection molding machines from Sumitomo(Japan) integrated with high-speed precision robots from Yushin. This combination ensures exceptional repeatability, tight tolerances, and energy-efficient performance.
ADVANCED MOLDING SYSTEM Advantages of Molding Machines
All-electric technology for improved energy efficiency and precision and supports environmentally friendly production.
Sumitomo (Japan) machines ensure micron-level precision.
High-speed robotic automation for efficient part handling.
On-site Production Equipment Display (31)
Sodick MS-200 All-Electric Machine
Sodick GL-150A Servo Machine
Chen Hsong SM-468V Servo Machine
Chen Hsong SM250TSV Servo Machine
Chen Hsong SM-230DCV Two-Color Machine
Yuh-Dah YH-80V-2SL Vertical Machine
Chung Wei JW-380TCW-S Two-Color Machine
Chung Wei JW-180TCW-S Two-Color Machine
FCS FB-400 Two-Color Machine
High-Pressure Nitrogen Compressor
Wittmann Battenfeld Silicone Machine
Arburg 470C Servo Machine
Arburg 420C Servo Machine
Arburg 100T Silicone Machine
Plustech V4-S-250T-G Vertical Machine
Plustech V4-S-55T-G Vertical Machine
KMC KT-800DM Vertical Machine
KMC KT-600D Vertical Machine
KMC KT300R Vertical Machine
Yushin Robot Arm
Sumitomo SE50EV-A
Sumitomo SE-180EV-A
Sumitomo SE-100EV-A
FANUC α-S350iB All Electric Machine
FANUC α-S220iB All Electric Machine
FANUC α-S180iB All Electric Machine
FANUC α-S100iB All Electric Machine
FANUC α-S100iA All Electric Machine
FANUC α-S50iB All Electric Machine
FANUC α-S30iB All Electric Machine
ENGEL All-Electric Machine
This enables us to support both high-volume production and complex precision molding applications, delivering consistent quality and reliability across a wide range of industries.
/* 網格卡片優化 */
.gdi-img-card {
width: calc(20% - 12px);
min-width: 150px;
background: #fff;
border: 1px solid #eee;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
cursor: pointer;
transform-style: preserve-3d;
text-align: center;
display: flex;
flex-direction: column;
}
.gdi-img-card img {
width: 100%;
aspect-ratio: 4 / 3;
/* 統一縮圖外框比 */
object-fit: contain;
/* 確保機台不被壓扁 */
display: block;
padding: 10px;
background: #f9f9f9;
pointer-events: none;
}
.card-text {
padding: 8px 5px;
font-size: 13px;
font-weight: bold;
color: #004a99;
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
}
/* 響應式:平板與手機適應 */
@media (max-width: 1024px) {
.gdi-img-card {
width: calc(33.33% - 12px);
}
}
@media (max-width: 600px) {
.gdi-img-card {
width: calc(50% - 12px);
}
}
function openGdiLightbox(src) {
const lb = document.getElementById('gdi-lightbox');
const lbImg = document.getElementById('lb-img');
lbImg.src = src;
lb.style.display = 'flex';
}
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 gdiHover(el, color) {
el.style.boxShadow = '0 0 20px ' + color;
el.style.borderColor = color;
}
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";
}