Image Gallery
Interactive image viewer with thumbnail navigation and fullscreen lightbox.
@{
var images = new List<TechGems.PinesUI.Views.Components.PinesImageGallery.GalleryItem>()
{
new TechGems.PinesUI.Views.Components.PinesImageGallery.GalleryItem
{
ImageUrl = "https://cdn.devdojo.com/images/june2023/mountains-01.jpeg",
ImageAlt = "Image 1"
},
new TechGems.PinesUI.Views.Components.PinesImageGallery.GalleryItem
{
ImageUrl = "https://cdn.devdojo.com/images/june2023/mountains-02.jpeg",
ImageAlt = "Image 2"
},
new TechGems.PinesUI.Views.Components.PinesImageGallery.GalleryItem
{
ImageUrl = "https://cdn.devdojo.com/images/june2023/mountains-03.jpeg",
ImageAlt = "Image 3"
},
}
}
<pines-image-gallery image-list="images" />