Modern Manufacturing Workplace
Grand Dynasty Industrial (GDI) builds a modern smart factory, integrating advanced production equipment with human-centric office spaces to provide an excellent working environment and high-quality manufacturing services.
Modern Manufacturing Environmen:
Clean, organized, and people-oriented workplace
GDI maintains a clean, organized, and well-controlled manufacturing environment to support stable production and consistent quality.
Our facilities are managed under 5S and lean manufacturing principles, ensuring efficient workflows and high operational standards.
In addition to production excellence, we provide a comfortable and modern workplace, creating a positive environment for both employees and visitors.
SmartWorkplace & Facility Highlights
Smart Factory and Career Environment
5S and lean management aligned with IATF 16949 standards
Temperature and humidity-controlled production environment
Automated material handling for improved efficiency and cleanliness
Ergonomic office spaces supporting teamwork and productivity
Well-designed employee areas with natural lighting
5S lean site management compliant with IATF 16949 standards
Clean, Organized, and Professional Environment
A well-organized environment reflects our commitment to quality, efficiency, and people-oriented manufacturing.
// 燈箱放大功能
function openGdiLightbox(src) {
const lb = document.getElementById('gdi-lightbox');
const lbImg = document.getElementById('lb-img');
lbImg.src = src;
lb.style.display = 'flex';
}
// 3D 視差傾斜邏輯 (設定為 15度以符合附件效果)
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";
}