Skip to content

Commit 6277022

Browse files
committed
Added Meme_generator
1 parent 33c7453 commit 6277022

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

Meme_generator/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h1>Feeling Bored?</h1>
1717
</div>
1818
<div class="img-container">
1919
<!-- the img will src will come from js dynamically -->
20-
<img src="" alt="" />
20+
<img src="" alt="" class="meme" />
2121
</div>
2222
</div>
2323
</body>

Meme_generator/script.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
const memesSrc = [
2+
"https://resize.indiatvnews.com/en/resize/newbucket/715_-/2017/09/main-qimg-171482e27ebfc7e262bfbabeb07b9ece-1504253531.jpg",
3+
"https://static.langimg.com/thumb/msid-67268236,width-680,resizemode-3/navbharat-times.jpg",
4+
"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQHNpAwPPPim-RN4_DjSYt9ZIzFfjhDdA1tvttXLiouFJ-B0dIGSwAITtyT8LMogSoNu4Y&usqp=CAU",
5+
"https://tweakindia.com/wp-content/uploads/2020/07/2.png",
6+
"https://qph.fs.quoracdn.net/main-qimg-d3e293e694b270bcd9ff499f0deede15-lq",
7+
"https://i.pinimg.com/originals/30/ef/07/30ef075b1a6a289b5dac4d031832eb72.jpg",
8+
"https://getsethappy.com/wp-content/uploads/2019/01/gully-boys-memes-1080x600.jpg",
9+
"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSs0TmftlNOhn2jN9D95IRBmVv9UhbrvNKiIQ&usqp=CAU",
10+
"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRm3w9On31QwjIbk_GPmVPMPTJIrjm6dr46-A&usqp=CAU",
11+
"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ_-BveXtt73oa2x0hUtj5h2yK7xEB3gAxwGpF-lwgmTo6cddUDtI8RZT7PuvlGX6hRZYM&usqp=CAU",
12+
"https://1.bp.blogspot.com/-UlFIpSZcNS0/YJIgP1BEzmI/AAAAAAAAETE/zWEtrl3PqmgjSwJx9ccIlqM3yW_toEZOgCLcBGAsYHQ/s2048/very-funny-indian-memes.jpg",
13+
"https://1.bp.blogspot.com/-gwaDLFVz8Uc/YNtP0yBouaI/AAAAAAAAB5w/10SEpkv0LIAlvUAv_kCKN58u6wa_auURQCNcBGAsYHQ/s1079/Indian%2Bmemes%2Bin%2Bhindi%2Btrending%2BIndian%2Bmemes18-min.webp",
14+
"https://images.news18.com/ibnlive/uploads/2021/09/cheese-butter.png",
15+
"https://images.news18.com/ibnlive/uploads/2014/07/engineeringmemes1.jpg?impolicy=website&width=510&height=356",
16+
"https://www.ohyaaro.com/wp-content/uploads/2021/05/funny-memes00.jpg",
17+
"https://memezila.com/wp-content/When-its-raining-but-the-electricity-doesnt-go-Miracle-miracle-meme-2239.png",
18+
];
19+
20+
const memeImg = document.querySelector(".meme");
21+
const getBtn = document.getElementById("btn");
22+
const container = document.querySelector(".img-container");
23+
24+
container.style.display = "none";
25+
26+
getBtn.addEventListener("click", function () {
27+
const randomMeme = Math.floor(Math.random() * memesSrc.length);
28+
memeImg.src = memesSrc[randomMeme];
29+
container.style.display = "block";
30+
});

0 commit comments

Comments
 (0)