migliorata chiusura modale + reindirizzamento alla list
This commit is contained in:
@@ -1,18 +1,19 @@
|
||||
<div class="absolute top-0 h-screen w-screen">
|
||||
<div id="map" class="absolute h-screen w-screen">
|
||||
<iframe *ngIf="distance"
|
||||
<iframe *ngIf="embed"
|
||||
class=" w-full h-full shadow-2xl pointer-events-auto"
|
||||
height="300" frameborder=""
|
||||
style=""
|
||||
referrerpolicy="no-referrer-when-downgrade"
|
||||
[src]='embed | safe' allowfullscreen></iframe>
|
||||
<img *ngIf="!embed" [src]="waypointInfo?.img ? waypointInfo.img : '/assets/testDetail/img.png'" alt="" class="my-auto w-screen opacity-5">
|
||||
</div>
|
||||
<div class="card bg-white sm:w-fit md:w-3/4 lg:w-1/4 m-4 p-4 z-10 absolute bottom-0 bg-gray-100 bg-opacity-65 backdrop-filter backdrop-blur-lg border-2 border-gray-300 shadow-4xl rounded-sm overflow-y-auto pointer-events-auto">
|
||||
<div *ngIf="embed && !this.myModal.checked" class="card bg-white sm:w-fit md:w-3/4 lg:w-1/4 m-4 p-2 z-10 absolute bottom-0 bg-gray-100 bg-opacity-65 backdrop-filter backdrop-blur-lg border-2 border-gray-300 shadow-4xl rounded-sm overflow-y-auto pointer-events-auto">
|
||||
<figure><img [src]="waypointInfo?.img ? waypointInfo.img : '/assets/testDetail/img.png'"
|
||||
[alt]="waypointInfo?.locationName ? waypointInfo.locationName : ''"/></figure>
|
||||
<div class="card-body">
|
||||
<div class="flex justify-between items-center">
|
||||
<h1 class="card-title font-extrabold">{{ waypointInfo?.locationName ? waypointInfo.locationName : 'Error 404' }}</h1>
|
||||
<h1 class="card-title font-extrabold">{{ waypointInfo?.name ? waypointInfo.name : 'Error 404' }}</h1>
|
||||
<div class="font-extrabold text-end text-blue-500 flex items-center">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="19.9219" height="19.9316" *ngIf="!distance" class="mx-1">
|
||||
@@ -55,7 +56,7 @@
|
||||
<div class="modal modal-bottom sm:modal-middle" *ngIf="img">
|
||||
<div class="modal-box">
|
||||
<h3 class="font-bold text-lg">Congratulations you have
|
||||
discovred {{ waypointInfo?.locationName ? waypointInfo.locationName : '' }}!</h3>
|
||||
discovred {{ waypointInfo?.name ? waypointInfo.name : '' }}!</h3>
|
||||
<img class="xl:max-w-md max-h-screen py-4 m-auto" [src]="img" *ngIf="img">
|
||||
<div class="modal-action">
|
||||
<button for="my-modal-6" class="btn bg-white hover:bg-blue-400" (click)="downloadImage()">
|
||||
|
||||
Reference in New Issue
Block a user