I design a website. In some webpage, I need to use some high-resolution images like 50M. Code is as follows:
<ul class="demo-sample-list" >
<li class="active">
<img src='/static/images/0.png'>
</li>
<li >
<img src='/static/images/1.png'>
</li>
<li >
<img src='/static/images/2.png'>
</li>
...
</ul>
but these webpage loads very slow. How to solve this problem? Can anyone give some advises?