|
|
خط ۱۲: |
خط ۱۲: |
|
| |
|
| <!-- پاپآپ ویدیو --> | | <!-- پاپآپ ویدیو --> |
| <div id="videoPopup" style="display:none; position:fixed; top:50%; left:50%; transform:translate(-50%,-50%); background:white; padding:15px; border-radius:10px; box-shadow:0 2px 10px rgba(0,0,0,0.3); z-index:9999; max-width:90%; width:600px;">
| |
| <iframe id="ytVideo" width="100%" height="340" src="https://www.youtube.com/embed/yZXTGhG8gjU?autoplay=1&mute=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
| |
| <div style="text-align:center; margin-top:10px;">
| |
| <p style="margin-bottom:10px;">برای تجربه بهتر، ویدیو را باز کنید:</p>
| |
| <a href="https://youtu.be/yZXTGhG8gjU" target="_blank" style="padding:10px 20px; background:#3e6f73; color:white; border-radius:5px; text-decoration:none; font-weight:bold;">مشاهده در یوتیوب</a>
| |
| <button id="closePopup" style="padding:10px 15px; margin-left:10px; border:none; border-radius:5px; background:#999; color:white; cursor:pointer;">بستن</button>
| |
| </div>
| |
| </div>
| |
|
| |
| <script type="text/javascript">
| |
| (function(){
| |
| // نمایش پاپآپ بعد از 2 ثانیه
| |
| setTimeout(function(){
| |
| var popup = document.getElementById('videoPopup');
| |
| if(popup) popup.style.display='block';
| |
| }, 2000);
| |
|
| |
| // بستن پاپآپ
| |
| var closeBtn = document.getElementById('closePopup');
| |
| if(closeBtn){
| |
| closeBtn.addEventListener('click', function(){
| |
| document.getElementById('videoPopup').style.display='none';
| |
| });
| |
| }
| |
| })();
| |
| </script>
| |