1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html lang="{{ .Site.LanguageCode }}">
- <head>
- {{ partial "headers.html" . }}
- </head>
- <body style="overflow-x: hidden;">
- <div id="all">
- {{ partial "nav.html" . }}
- {{ partial "carousel.html" . }}
- {{ partial "features.html" . }}
- {{ partial "footer.html" . }}
- </div>
- {{ partial "scripts.html" . }}
- <script>
- // 暫時隱藏首頁第一篇作品(因文案尚未確定)
- // let bottomBox = document.querySelector('.bottom-box');
- // bottomBox.style.display = "none"
- window.onload = () => {
- // 取得圖片尺寸
- let collectionImg = document.querySelectorAll('.collection-content img');
- for (let index = 0; index < collectionImg.length; index++) {
- const element = collectionImg[index];
- // 若圖片失效則隱藏
- if (element.naturalHeight < 50) {
- console.log('圖片失效', element);
- let parent = element.parentNode.parentNode;
- parent.style.display = "none";
- }
- }
- }
- </script>
- </body>
- </html>
|