Skip to content

Instantly share code, notes, and snippets.

View wishsagarks's full-sized avatar
🎯
Focusing

SAGAR SATAPATHY wishsagarks

🎯
Focusing
View GitHub Profile
{
"public_identifier":"sagar-satapathy-a4579b173",
"profile_pic_url":"https://s3.us-west-000.backblazeb2.com/proxycurl/person/sagar-satapathy-a4579b173/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20231011%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20231011T091940Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=737ad2b9c45f38b35f50b9d3e89ec5036c5a9106396d4790fb8171efb6352ed0",
"background_cover_image_url":"https://s3.us-west-000.backblazeb2.com/proxycurl/person/sagar-satapathy-a4579b173/cover?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20231011%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20231011T091941Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=c5c80ee3a9e77df0d90780518ca8d6fd86ef26ca12c1105656453d234acded6c",
"first_name":"SAGAR",
"last_name":"SATAPATHY",
"full_name":"SAGAR SATAPATHY",
"follower_count":null,
"occupation":"Corporate Relations and Public Relations at Microsoft S
@wishsagarks
wishsagarks / index.html
Created April 25, 2022 05:09
Paginated Photo Gallery - Vanilla JavaScript
<div class="gallery">
<header>
<h1>Photo Gallery</h1>
</header>
<main id="image-gallery" class="images"></main>
<footer id="gallery-pagination">
<button id="btnPrevious">&larr; <span class="sr-only">Previous</span></button>
<div>
<div id="gallery-dots"></div>
<span id="page"></span>
@wishsagarks
wishsagarks / index.html
Created April 25, 2022 05:08
Javascript Image gallery
<div class="container">
<div class="main-img">
<img src="https://picsum.photos/id/1015/800/500" alt="" id="current">
</div>
<div class="imgs">
<img src="https://picsum.photos/id/1015/800/500" alt="">
<img src="https://picsum.photos/id/1055/800/500" alt="">
<img src="https://picsum.photos/id/1065/800/500" alt="">
<img src="https://picsum.photos/id/1045/800/500" alt="">
</div>