Github-Badge
@@ -353,7 +353,19 @@
📃 Achievement List 📃
|
Starstruck |
-
Created a repository that has many stars |
+
+ Create a repository with a lot of stars.
+
+ check the
+
+ Sample repo
+
+
+ If you get the first 16 stars you will unlock the badge.
+
+ Watch the Video Tutorial
+
+ |
@@ -415,8 +427,10 @@ 📃 Achievement List 📃
Pair Extraordinaire |
Coauthored commits on merged pull request
Requirement: VSCode IDE (bit difficult to get)
- You can raise a sample PR here by adding to the existing readme file and tag me @sanjay-kv
- Watch the Video Tutorial |
+ You can raise a sample PR here by
+ adding to the existing readme file and tag me @sanjay-kv
+ Watch the Video Tutorial
+
@@ -453,8 +467,10 @@ 📃 Achievement List 📃
width="60px" alt="Pull Shark">
Pull Shark |
Opened a pull request and it should be merged
- You can raise a sample PR here by adding on existing readme file and tag me @sanjay-kv
- Watch the Video Tutorial |
+ You can raise a sample PR here by
+ adding on existing readme file and tag me @sanjay-kv
+ Watch the Video Tutorial
+
@@ -490,7 +506,9 @@ 📃 Achievement List 📃
|
Galaxy Brain |
- Answered a discussion and someone marked your reply as answer You can answer some of the discussions here Watch the Video Tutorial |
+ Answered a discussion and someone marked your reply as answer You can answer some of the
+ discussions here Watch the Video Tutorial |
@@ -526,7 +544,10 @@ 📃 Achievement List 📃
|
YOLO |
- Merged a pull request without a review. You can raise a PR here. Watch the Video Tutorial |
+ Merged a pull request without a
+ review. You can raise a PR here. Watch the Video Tutorial |
@@ -713,7 +734,10 @@ ✨ Highlights Badges ✨
alt="Pro Light Mode" id="pro-light" class="badges-icons-light">
Pro |
- Pay for GitHub Pro or if you are student get it free: Watch Video |
+ Pay for GitHub
+ Pro or if you are student get it free: Watch
+ Video |
@@ -845,7 +869,9 @@ Showcase your experti
worldwide.
-
+
@@ -891,7 +917,7 @@ GitHub Actions
-
GitHub Advanced Security
@@ -993,15 +1019,16 @@
-
+
-
+
@@ -1033,32 +1060,32 @@
-
+ window.document.addEventListener("DOMContentLoaded", function () {
+ const imageElement = document.querySelector('.hoverImage');
+ if (imageElement) {
+ const handleMouseMove = (e) => {
+ let rect = imageElement.getBoundingClientRect();
+ let x = e.clientX - rect.left;
+ let y = e.clientY - rect.top;
+
+ let dx = (x - rect.width / 2) / (rect.width / 2);
+ let dy = (y - rect.height / 2) / (rect.height / 2);
+
+ imageElement.style.transform = `perspective(500px) rotateY(${dx * 5}deg) rotateX(${-dy * 5}deg)`;
+ };
+
+ const handleMouseLeave = () => {
+ imageElement.style.transform = "";
+ };
+
+ imageElement.addEventListener('mousemove', handleMouseMove);
+ imageElement.addEventListener('mouseleave', handleMouseLeave);
+ }
+ })
+
| | | | | |