mirror of
https://gitlab.com/nekoya/web.git
synced 2025-03-20 22:08:59 +01:00
Add lazy load to Bag Page
This commit is contained in:
parent
abc5851815
commit
9906a66326
1 changed files with 4 additions and 3 deletions
7
bag.html
7
bag.html
|
@ -84,6 +84,7 @@
|
|||
}
|
||||
}
|
||||
</style>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/lazysizes/5.3.2/lazysizes.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body class="bg-color">
|
||||
|
@ -125,7 +126,7 @@
|
|||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-sm-7 col-md-6 col-lg-4">
|
||||
<img alt="placeholder image" class="img-fluid" src="assets/Product_1.webp" width="180px"
|
||||
<img alt="placeholder image" class="img-fluid lazyload" src="assets/Product_1.webp" width="180px"
|
||||
height="180px"/>
|
||||
</div>
|
||||
<div class="col-sm-5 col-md-6 col-lg-8">
|
||||
|
@ -156,7 +157,7 @@
|
|||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-sm-7 col-md-6 col-lg-4">
|
||||
<img alt="placeholder image" class="img-fluid" src="assets/Product_1.webp" width="180px"
|
||||
<img alt="placeholder image" class="img-fluid lazyload" src="assets/Product_1.webp" width="180px"
|
||||
height="180px"/>
|
||||
</div>
|
||||
<div class="col-sm-5 col-md-6 col-lg-8">
|
||||
|
@ -188,7 +189,7 @@
|
|||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-sm-7 col-md-6 col-lg-4">
|
||||
<img alt="placeholder image" class="img-fluid" src="assets/Product_1.webp" width="180px"
|
||||
<img alt="placeholder image" class="img-fluid lazyload" src="assets/Product_1.webp" width="180px"
|
||||
height="180px"/>
|
||||
</div>
|
||||
<div class="col-sm-5 col-md-6 col-lg-8">
|
||||
|
|
Loading…
Add table
Reference in a new issue