Last active
June 4, 2024 08:36
-
-
Save bogoreh/3c39fd7bbf75ea62798c014dea5052bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Spin-off of "Challenge: Cat-stache"</title> | |
| <style> | |
| #mustache-pic { | |
| position: absolute; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <img id="cat-pic" src="https://www.kasandbox.org/programming-images/animals/cat.png" width="300" alt="cat photo"> | |
| <img id="mustache-pic" src="https://www.kasandbox.org/programming-images/misc/mustache.png" alt="mustache" width="100"> | |
| <script> | |
| var catPic = document.getElementById("cat-pic"); | |
| var onCatClick = function(e) { | |
| var stashePic = document.getElementById("mustache-pic"); | |
| stashePic.style.top = e.clientY+"px"; | |
| stashePic.style.left = e.clientX+"px"; | |
| }; | |
| catPic.addEventListener("click", onCatClick); | |
| </script> | |
| </body> | |
| </html> |
Author
I don't understand, what you said
…On Tue, 4 Jun 2024, 08:57 Ahmed1RAGE, ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
ayou sure?
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/bogoreh/3c39fd7bbf75ea62798c014dea5052bd#gistcomment-5077772>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ASEZEENNNUHM7AE73WUSA2TZFVJNHBFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVEYTAOBTHEZDENRRU52HE2LHM5SXFJTDOJSWC5DF>
.
You are receiving this email because you authored the thread.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ayou sure?