mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.5 KiB
49 lines
1.5 KiB
@page
|
|
@model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.ImagesModel
|
|
@{
|
|
ViewData["Title"] = "Images";
|
|
}
|
|
|
|
<h2>Images</h2>
|
|
|
|
<p>Based on <a href="https://getbootstrap.com/docs/4.1/content/images/" target="_blank"> Bootstrap Images</a>.</p>
|
|
|
|
<h4># Image Examples</h4>
|
|
|
|
<div class="demo-with-code">
|
|
<div class="demo-area">
|
|
<abp-image src="..." responsive="true"></abp-image>
|
|
</div>
|
|
<div class="code-area">
|
|
<pre>
|
|
<abp-image src="..." responsive="true"></abp-image>
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="demo-with-code">
|
|
<div class="demo-area">
|
|
<abp-image src="..." thumbnail="true" rounded="true"></abp-image>
|
|
</div>
|
|
<div class="code-area">
|
|
<pre>
|
|
<abp-image src="..." thumbnail="true" rounded="true"></abp-image>
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="demo-with-code">
|
|
<div class="demo-area">
|
|
<abp-image src="..." rounded="true" position="Left"></abp-image>
|
|
<abp-image src="..." rounded="true" position="Center"></abp-image>
|
|
<abp-image src="..." rounded="true" position="Right"></abp-image>
|
|
</div>
|
|
<div class="code-area">
|
|
<pre>
|
|
<abp-image src="..." rounded="true" position="Left"></abp-image>
|
|
<abp-image src="..." rounded="true" position="Center"></abp-image>
|
|
<abp-image src="..." rounded="true" position="Right"></abp-image>
|
|
</pre>
|
|
</div>
|
|
</div>
|