Skip to content

Commit c1021f9

Browse files
committed
add progressive image loading
1 parent 1ee5108 commit c1021f9

File tree

4 files changed

+27
-11
lines changed

4 files changed

+27
-11
lines changed

css/grayscale.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
1.52 KB
Loading
1.15 KB
Loading

index.html

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
<!-- Custom styles for this template -->
2222
<link href="css/grayscale.min.css" rel="stylesheet">
2323

24+
<!--Progressive Image Loading-->
25+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/progressive-image.js/dist/progressive-image.css">
26+
2427
</head>
2528

2629
<body id="page-top">
@@ -69,13 +72,17 @@ <h2 class="text-white-50 mx-auto mt-2 mb-5">Software Engineer and Web developer
6972
<div class="row">
7073
<div class="col-lg-8 mx-auto">
7174
<h2 class="text-white mb-4">About me</h2>
72-
<p class="text-white-50">Graduate in Software Engineering from <a href="https://www.mmu.edu.my/fci/">Faculty of Computing & Informatics, Multimedia University, Cyberjaya, Malaysia</a> with about 1 year of professional experience in developing ERP & Cross-platform applications using HTML, CSS, JS, Laravel, VueJs, Python, Odoo. <br>
73-
Currently, I'm working at <a href="http://www.bayemporium-bd.com/"> Bay Emporium Ltd.</a> as Jr. Software Engineer on <a href="https://www.amarbay.com/">E-commerce, ERP software</a> & a (possible) React Native mobile app built on Odoo 10. For more visit my main portfolio website built using Laravel and Vue.js or
74-
<a href="http://aqeeb-imtiaz-harun.herokuapp.com/resume"> download my CV.</a></p>
75+
<p class="text-white-50" style="margin-bottom: 1rem;">
76+
Graduate in Software Engineering from <a href="https://www.mmu.edu.my/fci/">Faculty of Computing & Informatics, Multimedia University, Cyberjaya, Malaysia</a> with about 1 year of professional experience in developing ERP & Cross-platform applications using HTML, CSS, JS, Laravel, VueJs, Python, Odoo.
77+
</p>
78+
<p class="text-white-50">
79+
Currently, I'm working at <a href="http://www.bayemporium-bd.com/"> Bay Emporium Ltd.</a> as Jr. Software Engineer on <a href="https://www.amarbay.com/">E-commerce, ERP software</a> & a (possible) React Native mobile app built on Odoo 10. For more visit my main portfolio website built using Laravel and Vue.js or
80+
<a href="http://aqeeb-imtiaz-harun.herokuapp.com/resume"> download my CV.</a>
81+
</p>
7582
<a href="http://aqeeb-imtiaz-harun.herokuapp.com/" class="btn btn-secondary js-scroll-trigger">Portfolio Website</a>
7683
</div>
7784
</div>
78-
85+
7986
<br>
8087

8188
<a href="#projects" class="btn btn-primary js-scroll-trigger"><i class="fas fa-angle-down"></i> Projects</a>
@@ -93,7 +100,10 @@ <h2 class="text-center text-black-50">Projects</h2>
93100
<!-- Featured Project Row -->
94101
<div class="row align-items-center no-gutters mb-4 mb-lg-5">
95102
<div class="col-xl-8 col-lg-7">
96-
<img class="img-fluid mb-3 mb-lg-0" src="img/projects/aqeeb_cool_blog.JPG" alt="">
103+
<a href="img/projects/aqeeb_cool_blog.JPG" class="progressive replace">
104+
<img src="img/projects/aqeeb_cool_blog_preview.JPG" class="img-fluid mb-3 mb-lg-0 preview" alt="project1" />
105+
</a>
106+
<!-- <img loading="lazy" class="img-fluid mb-3 mb-lg-0" src="img/projects/aqeeb_cool_blog.JPG" alt=""> -->
97107
</div>
98108
<div class="col-xl-4 col-lg-5">
99109
<div class="featured-text text-center text-lg-left">
@@ -106,7 +116,10 @@ <h4>Personal Blog Site</h4>
106116
<!-- Project One Row -->
107117
<div class="row justify-content-center no-gutters mb-5 mb-lg-0">
108118
<div class="col-lg-6">
109-
<img class="img-fluid" src="img/projects/basic_tasks_app.JPG" alt="">
119+
<a href="img/projects/basic_tasks_app.JPG" class="progressive replace">
120+
<img src="img/projects/basic_tasks_app_preview.JPG" class="img-fluid mb-3 mb-lg-0 preview" alt="project2" />
121+
</a>
122+
<!-- <img loading="lazy" class="img-fluid" src="img/projects/basic_tasks_app.JPG" alt=""> -->
110123
</div>
111124
<div class="col-lg-6">
112125
<div class="bg-black text-center h-100 project">
@@ -235,14 +248,17 @@ <h4 class="text-uppercase m-0">Phone</h4>
235248
</footer>
236249

237250
<!-- Bootstrap core JavaScript -->
238-
<script src="vendor/jquery/jquery.min.js"></script>
239-
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
251+
<script defer src="vendor/jquery/jquery.min.js"></script>
252+
<script defer src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
240253

241254
<!-- Plugin JavaScript -->
242-
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
255+
<script defer src="vendor/jquery-easing/jquery.easing.min.js"></script>
243256

244257
<!-- Custom scripts for this template -->
245-
<script src="js/grayscale.min.js"></script>
258+
<script defer src="js/grayscale.min.js"></script>
259+
260+
<!--Progressive Image Loading-->
261+
<script defer src="https://cdn.jsdelivr.net/npm/progressive-image.js/dist/progressive-image.js"></script>
246262

247263
</body>
248264

0 commit comments

Comments
 (0)