FastJava

html button lol

Apr 27th, 2024
1,362
0
Never
5
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.38 KB | Writing | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.    <link rel="stylesheet" href="styles.css">
  5.    <script src="script.js"></script>
  6. </head>
  7. <body>
  8.    <button class="my-button" data-image-link="https://example.com/image.png">
  9.       Click me
  10.    </button>
  11. <!--- css --->
  12. <style>
  13. .my-button {
  14.    background-color: #4CAF50;
  15.    color: white;
  16.    padding: 15px 32px;
  17.    text-align: center;
  18.    text-decoration: none;
  19.    display: inline-block;
  20.    font-size: 16px;
  21.    margin: 4px 2px;
  22.    cursor: pointer;
  23.    position: relative;
  24.    overflow: hidden;
  25. }
  26.  
  27. .my-button:before {
  28.    content: "";
  29.    position: absolute;
  30.    top: 0;
  31.    left: 0;
  32.    width: 100%;
  33.    height: 100%;
  34.    background-image: url('placeholder.png');
  35.    background-size: cover;
  36.    background-position: center;
  37.    transition: transform 0.3s ease;
  38.    transform: translateX(-100%);
  39. }
  40.  
  41. .my-button:hover:before {
  42.    transform: translateX(0);
  43. }
  44. </style>
  45.  
  46. <!--- javascript --->
  47.  
  48. <script>
  49. document.querySelector('.my-button').addEventListener('click', function() {
  50.    const imageLink = this.getAttribute('data-image-link');
  51.    const iframe = document.createElement('iframe');
  52.    iframe.src = imageLink;
  53.    iframe.width = '640';
  54.    iframe.height = '360';
  55.    iframe.style.border = 'none';
  56.    iframe.style.overflow = 'hidden';
  57.    iframe.style.marginLeft = '-200px';
  58.    document.body.appendChild(iframe);
  59. });
  60. </script>
  61.  
  62. im lol 😂
Tags: html lol button
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • Mirzevin
    17 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • User was banned
Add Comment
Please, Sign In to add comment