Skip to content

Commit 399946e

Browse files
committed
perf: load images lazily on the country information page
Inspired by #1508
1 parent 5e4dfe3 commit 399946e

File tree

1 file changed

+25
-6
lines changed
  • src/main/webapp/WEB-INF/views/country

1 file changed

+25
-6
lines changed

Diff for: src/main/webapp/WEB-INF/views/country/info.html

+25-6
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ <h3 id="page-header" th:text="${#strings.capitalize(header)}">
9797
th:with="label=|${countryName}, ${desc}|"
9898
alt="Italy, Prehistoric animals, 1999, 7&nbsp;stamps (imperf.)"
9999
title="Italy, Prehistoric animals, 1999, 7&nbsp;stamps (imperf.)"
100+
loading="lazy"
100101
th:alt="${label}"
101102
th:title="${label}"
102103
th:src="@{${GET_IMAGE_PREVIEW_PAGE}(id=${series.previewId})}" />
@@ -112,37 +113,55 @@ <h3 id="page-header" th:text="${#strings.capitalize(header)}">
112113
</figure>
113114
<figure>
114115
<a href="../series/info.html">
115-
<img src="http://via.placeholder.com/250" alt="Italy, Prehistoric animals, 22&nbsp;stamps" title="Italy, Prehistoric animals, 22&nbsp;stamps" />
116+
<img src="http://via.placeholder.com/250"
117+
alt="Italy, Prehistoric animals, 22&nbsp;stamps"
118+
title="Italy, Prehistoric animals, 22&nbsp;stamps"
119+
loading="lazy" />
116120
</a>
117121
<figcaption><a href="../series/info.html">Prehistoric animals, 22&nbsp;stamps</a></figcaption>
118122
</figure>
119123
<figure>
120124
<a href="../series/info.html">
121-
<img src="http://via.placeholder.com/250" alt="Italy, Cartoons, 2005, 5&nbsp;stamps" title="Italy, Cartoons, 2005, 5&nbsp;stamps" />
125+
<img src="http://via.placeholder.com/250"
126+
alt="Italy, Cartoons, 2005, 5&nbsp;stamps"
127+
title="Italy, Cartoons, 2005, 5&nbsp;stamps"
128+
loading="lazy" />
122129
</a>
123130
<figcaption><a href="../series/info.html">Cartoons, 2005, 5&nbsp;stamps</a></figcaption>
124131
</figure>
125132
<figure>
126133
<a href="../series/info.html">
127-
<img src="http://via.placeholder.com/250" alt="Italy, Prehistoric animals, 22&nbsp;stamps" title="Italy, Prehistoric animals, 22&nbsp;stamps" />
134+
<img src="http://via.placeholder.com/250"
135+
alt="Italy, Prehistoric animals, 22&nbsp;stamps"
136+
title="Italy, Prehistoric animals, 22&nbsp;stamps"
137+
loading="lazy" />
128138
</a>
129139
<figcaption><a href="../series/info.html">Prehistoric animals, 22&nbsp;stamps</a></figcaption>
130140
</figure>
131141
<figure>
132142
<a href="../series/info.html">
133-
<img src="http://via.placeholder.com/250" alt="Italy, Prehistoric animals, 1983, 5&nbsp;stamps" title="Italy, Prehistoric animals, 1983, 5&nbsp;stamps" />
143+
<img src="http://via.placeholder.com/250"
144+
alt="Italy, Prehistoric animals, 1983, 5&nbsp;stamps"
145+
title="Italy, Prehistoric animals, 1983, 5&nbsp;stamps"
146+
loading="lazy" />
134147
</a>
135148
<figcaption><a href="../series/info.html">Prehistoric animals, 1983, 5&nbsp;stamps</a></figcaption>
136149
</figure>
137150
<figure>
138151
<a href="../series/info.html">
139-
<img src="http://via.placeholder.com/250" alt="Italy, Famous People, 2003, 4&nbsp;stamps" title="Italy, Famous People, 2003, 4&nbsp;stamps" />
152+
<img src="http://via.placeholder.com/250"
153+
alt="Italy, Famous People, 2003, 4&nbsp;stamps"
154+
title="Italy, Famous People, 2003, 4&nbsp;stamps"
155+
loading="lazy" />
140156
</a>
141157
<figcaption><a href="../series/info.html">Famous People, 2003, 4&nbsp;stamps</a></figcaption>
142158
</figure>
143159
<figure>
144160
<a href="../series/info.html">
145-
<img src="http://via.placeholder.com/250" alt="Italy, Sport, 1996, 1&nbsp;stamp" title="Italy, Sport, 1996, 1&nbsp;stamp" />
161+
<img src="http://via.placeholder.com/250"
162+
alt="Italy, Sport, 1996, 1&nbsp;stamp"
163+
title="Italy, Sport, 1996, 1&nbsp;stamp"
164+
loading="lazy" />
146165
</a>
147166
<figcaption><a href="../series/info.html">Sport, 1996, 1&nbsp;stamp</a></figcaption>
148167
</figure>

0 commit comments

Comments
 (0)