Skip to content

Commit 985ee95

Browse files
committed
Cleared conflicts
2 parents 1705442 + 5b4ad21 commit 985ee95

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+604
-267
lines changed

blazor-toc.html

Lines changed: 15 additions & 1 deletion
Large diffs are not rendered by default.

blazor/Release-Notes/26.1.42.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: Essential Studio for Blazor Weekly Nuget Release Release Notes
3+
description: Essential Studio for Blazor Weekly Nuget Release Release Notes
4+
platform: Blazor
5+
documentation: ug
6+
---
7+
8+
# Essential Studio for Blazor Release Notes
9+
10+
{% include release-info.html date="July 16, 2024" version="v26.1.42" %}
11+
12+
{% directory path: _includes/release-notes/v26.1.42 %}
13+
14+
{% include {{file.url}} %}
15+
16+
{% enddirectory %}

blazor/appbar/design.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The following example depicts the code to provide spacing between the home and p
3030
</div>
3131
```
3232

33-
![Blazor AppBar with Spacer](./images/spacer_appbar.png)
33+
![Blazor AppBar with Spacer.](./images/blazor-appbar-spacer.png)
3434
{% previewsample "https://blazorplayground.syncfusion.com/embed/htLKWVizhrJGeHZk?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
3535

3636
## Separator
@@ -68,7 +68,7 @@ The following example depicts the code to provide a vertical line between a grou
6868
```
6969
{% previewsample "https://blazorplayground.syncfusion.com/embed/BZrUWhizrrSDjGWv?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
7070

71-
![Blazor AppBar with Separator](./images/separator_appbar.png)
71+
![Blazor AppBar with Separator.](./images/blazor-appbar-separator.png)
7272

7373
## Media Query
7474

@@ -114,7 +114,7 @@ Media Query is used to adjusting the AppBar for different screen sizes. Resize t
114114
</style>
115115
```
116116

117-
![Blazor AppBar with Media Query](./images/media_appbar.png)
117+
![Blazor AppBar with Media Query.](./images/blazor-appbar-media-quary.png)
118118
{% previewsample "https://blazorplayground.syncfusion.com/embed/hDVUWBsJrBofaJVB?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
119119
## Designing AppBar with Menu
120120

@@ -173,7 +173,7 @@ Media Query is used to adjusting the AppBar for different screen sizes. Resize t
173173
</style>
174174
```
175175

176-
![Blazor AppBar with Menu](./images/menu_appbar.png)
176+
![Blazor AppBar with Menu.](./images/blazor-appbar-menu.png)
177177
{% previewsample "https://blazorplayground.syncfusion.com/embed/BXrgCrsfhVRDMsdT?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
178178

179179
## Designing AppBar with Buttons
@@ -209,7 +209,7 @@ Media Query is used to adjusting the AppBar for different screen sizes. Resize t
209209
</style>
210210
```
211211

212-
![Blazor AppBar with Buttons](./images/buttons_appbar.png)
212+
![Blazor AppBar with Buttons.](./images/blazor-appbar-buttons.png)
213213
{% previewsample "https://blazorplayground.syncfusion.com/embed/VDVgMBMTLrdehyCb?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
214214

215215
## Designing AppBar with SideBar
@@ -370,7 +370,6 @@ AppBar toggle button used to control the expand and collapse state of **SfSideba
370370
}
371371
</style>
372372
```
373-
374-
![Blazor AppBar with SideBar](./images/sidebar_appbar.png)
373+
![Blazor AppBar with SideBar.](./images/blazor-appbar-sidebar.png)
375374

376375
{% previewsample "https://blazorplayground.syncfusion.com/embed/hDVKirMTrrRbKrNE?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
---
2+
layout: post
3+
title: Load webp format image with Blazor Carousel Component | Syncfusion
4+
description: Checkout and learn about how to load webp format image with Blazor Carousel component in Blazor Server App and Blazor WebAssembly App.
5+
platform: Blazor
6+
control: Carousel
7+
documentation: ug
8+
---
9+
10+
# Load webp format image with Blazor Carousel Component
11+
12+
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.
13+
14+
```cshtml
15+
@using Syncfusion.Blazor.Navigations
16+
17+
<div class="control-container">
18+
<SfCarousel SwipeMode="CarouselSwipeMode.Mouse & CarouselSwipeMode.Touch">
19+
<CarouselItem>
20+
<figure class="img-container">
21+
<img src="https://www.gstatic.com/webp/gallery/1.webp" alt="Majestic Valley View" style="height:100%;width:100%;" />
22+
<figcaption class="img-caption">Majestic Valley View</figcaption>
23+
</figure>
24+
</CarouselItem>
25+
<CarouselItem>
26+
<figure class="img-container">
27+
<img src="https://www.gstatic.com/webp/gallery/2.webp" alt="Thrilling Rapids Adventure" style="height:100%;width:100%;" />
28+
<figcaption class="img-caption">Thrilling Rapids Adventure</figcaption>
29+
</figure>
30+
</CarouselItem>
31+
<CarouselItem>
32+
<figure class="img-container">
33+
<img src="https://www.gstatic.com/webp/gallery/3.webp" alt="Snowy Stroll" style="height:100%;width:100%;" />
34+
<figcaption class="img-caption">Snowy Stroll</figcaption>
35+
</figure>
36+
</CarouselItem>
37+
</SfCarousel>
38+
</div>
39+
40+
<style>
41+
.control-container {
42+
height: 300px;
43+
margin: 0 auto;
44+
width: 500px;
45+
}
46+
47+
.img-container {
48+
height: 100%;
49+
margin: 0;
50+
}
51+
52+
.img-caption {
53+
color: #fff;
54+
font-size: 1rem;
55+
position: absolute;
56+
bottom: 3rem;
57+
width: 100%;
58+
text-align: center;
59+
}
60+
61+
</style>
62+
```

0 commit comments

Comments
 (0)