diff --git a/blazor-toc.html b/blazor-toc.html index 36a0270650..23c76c98ce 100644 --- a/blazor-toc.html +++ b/blazor-toc.html @@ -1049,6 +1049,13 @@
  • Navigators and Indicators
  • Accessibility
  • Styles and Appearances
  • +
  • How To + +
  • API Reference
  • diff --git a/blazor/carousel/how-to/load-images-in-webp-format.md b/blazor/carousel/how-to/load-images-in-webp-format.md new file mode 100644 index 0000000000..36838fb1f4 --- /dev/null +++ b/blazor/carousel/how-to/load-images-in-webp-format.md @@ -0,0 +1,62 @@ +--- +layout: post +title: Load webp format image with Blazor Carousel Component | Syncfusion +description: Checkout and learn about how to load webp format image with Blazor Carousel component in Blazor Server App and Blazor WebAssembly App. +platform: Blazor +control: Carousel +documentation: ug +--- + +# Load webp format image with Blazor Carousel Component + +You can load the carousel image in the webp format, which aims to create smaller, better-looking images. Choosing webp as your image format can significantly improve your website's performance without sacrificing visual quality. webp images are significantly smaller in file size compared to formats like JPEG and PNG. This results in faster load times and less data usage. To achieve this, you can convert your image format to webp and pass them to Carousel items. The following sample illustrates how to load a carousel image in the webp format component. + +```cshtml +@using Syncfusion.Blazor.Navigations + +
    + + +
    + Majestic Valley View +
    Majestic Valley View
    +
    +
    + +
    + Thrilling Rapids Adventure +
    Thrilling Rapids Adventure
    +
    +
    + +
    + Snowy Stroll +
    Snowy Stroll
    +
    +
    +
    +
    + + +``` \ No newline at end of file