当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Google AMP amp-lightbox-gallery用法及代码示例


amp-lightbox-gallery组件用于为其他放大器组件(如amp-carousel,amp-img)提供灯箱体验。目前,amp-lightbox-gallery仅支持图像。

必需的脚本:将amp-lightbox-gallery组件导入标头。

HTML

<script async custom-element="amp-lightbox-gallery" src= 
"https://cdn.ampproject.org/v0/amp-lightbox-gallery-0.1.js"> 
</script>

属性:



  • lightbox:我们使用此属性为图像添加灯箱效果。
  • src:指定要嵌入的图像的URL或路径。
  • layout:指定图像的布局,例如反应灵敏。

例:

HTML

<!doctype html> 
<html ⚡> 
  
<head> 
    <meta charset="utf-8"> 
    <link rel="canonical" href= 
"https://amp.dev/documentation/examples/components/amp-lightbox-gallery/index.html"> 
  
    <meta name="viewport" content= 
        "width=device-width,minimum-scale=1, 
        initial-scale=1"> 
  
    <script async src= 
        "https://cdn.ampproject.org/v0.js"> 
    </script> 
  
    <script async custom-element="amp-carousel"
src="https://cdn.ampproject.org/v0/amp-carousel-0.1.js"> 
    </script> 
  
    <title>Google AMP amp-lightbox-gallery</title> 
  
    <!-- Import the amp-lightbox-gallery  
        component in the header.  -->
    <script async custom-element="amp-lightbox-gallery"
src="https://cdn.ampproject.org/v0/amp-lightbox-gallery-0.1.js"> 
    </script> 
  
    <style amp-boilerplate> 
        body { 
            -webkit-animation:-amp-start 8s  
                steps(1, end) 0s 1 normal both; 
              
            -moz-animation:-amp-start 8s  
                steps(1, end) 0s 1 normal both; 
              
            -ms-animation:-amp-start 8s  
                steps(1, end) 0s 1 normal both; 
              
            animation:-amp-start 8s  
                steps(1, end) 0s 1 normal both; 
        } 
  
        @-webkit-keyframes -amp-start { 
            from { 
                visibility:hidden 
            } 
  
            to { 
                visibility:visible 
            } 
        } 
  
        @-moz-keyframes -amp-start { 
            from { 
                visibility:hidden 
            } 
  
            to { 
                visibility:visible 
            } 
        } 
  
        @-ms-keyframes -amp-start { 
            from { 
                visibility:hidden 
            } 
  
            to { 
                visibility:visible 
            } 
        } 
  
        @-o-keyframes -amp-start { 
            from { 
                visibility:hidden 
            } 
  
            to { 
                visibility:visible 
            } 
        } 
  
        @keyframes -amp-start { 
            from { 
                visibility:hidden 
            } 
  
            to { 
                visibility:visible 
            } 
        } 
    </style> 
    <noscript> 
        <style amp-boilerplate> 
            body { 
                -webkit-animation:none; 
                -moz-animation:none; 
                -ms-animation:none; 
                animation:none 
            } 
        </style> 
    </noscript> 
    <style amp-custom> 
        :root { 
            --color-primary:#005AF0; 
            --color-text-light:#fff; 
            --space-1:.5rem; 
            --space-2:1rem; 
        } 
    </style> 
</head> 
  
<body> 
    <div> 
        <amp-img lightbox src= 
"https://pbs.twimg.com/profile_images/1304985167476523008/QNHrwL2q_400x400.jpg"
            width="300" height="200"
            layout="responsive"> 
        </amp-img> 
  
        <p class="paragraph"> 
            welcome to geeksforgeeks 
        </p> 
  
          
        <amp-img lightbox 
            src= 
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20200817185016/gfg_complete_logo_2x-min.png"
            width="300" height="200"
            layout="responsive"> 
        </amp-img> 
  
        <p class="paragraph"> 
            GeeksforGeeks A Computer Science  
            portal for geeks. 
        </p> 
  
    </div> 
</body> 
  
</html>

输出:

代码输出

单击图像可得到以下视图

在图像上单击

单击左上方的图库选项可提供以下视图

图库视图




相关用法


注:本文由纯净天空筛选整理自somsagar2019大神的英文原创作品 Google AMP amp-lightbox-gallery。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。