mirror of https://github.com/Squidex/squidex.git
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.
29 lines
889 B
29 lines
889 B
<div class="row">
|
|
<div class="col-5">
|
|
<Label>Select position of focus point</Label>
|
|
|
|
<div class="image">
|
|
<div class="image-container absolute align-items-center justify-content-center">
|
|
<div>
|
|
<img #image [src]="imageSource" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-7">
|
|
<Label>Preview for different sizes</Label>
|
|
|
|
<div class="preview preview-wide">
|
|
<img #previewWide [src]="imageSource" />
|
|
</div>
|
|
|
|
<div class="preview-line2">
|
|
<div class="preview preview-small absolute">
|
|
<img #previewSmall [src]="imageSource" />
|
|
</div>
|
|
<div class="preview preview-normal absolute">
|
|
<img #previewNormal [src]="imageSource" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|