Contact Us

Contact us Today to Schedule a Consultation or to Learn More about our Services.

Map

Find us on Google

Locate and visit us or send us a message for next project!

Submit a Request

Best Wishes

Make a Call

Sales: +86 13535035962

Send Email

Sales: Wilson.Lau@conzpack.com

Visit a Office

28F, North Unit, A Zone, Zhongzhou Building, Haizhu District, Guangzhou, 510405

document.addEventListener('DOMContentLoaded', function () { var video = document.querySelector('.hover-video-container .elementor-video iframe'); // 获取视频iframe元素 var videoElement = document.querySelector('.hover-video-container .elementor-video video'); // 获取本地视频元素 // 鼠标悬停时自动播放视频并从头播放 document.querySelector('.hover-video-container').addEventListener('mouseenter', function () { if (videoElement) { videoElement.currentTime = 0; // 重置视频到开始 videoElement.play(); // 播放视频 } else if (video) { video.contentWindow.postMessage('{"event":"command","func":"seekTo","args":[0]}', '*'); // YouTube或Vimeo视频,从头开始播放 video.contentWindow.postMessage('{"event":"command","func":"playVideo","args":""}', '*'); } }); // 鼠标移开时暂停并重置视频 document.querySelector('.hover-video-container').addEventListener('mouseleave', function () { if (videoElement) { videoElement.pause(); // 暂停视频 videoElement.currentTime = 0; // 重置视频到开始 } else if (video) { video.contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}', '*'); } }); });