Advertisement
trainer_pemrograman

Penerapan jQuery Effect

Sep 24th, 2024
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.15 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Penerapan jQuery Effect</title>
  5.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
  6. </head>
  7. <body>
  8.     <style>  
  9.         .box {
  10.             width: 200px;
  11.             height: 200px;
  12.             background-color: #2DAAE1;
  13.             margin-top: 20px;
  14.             padding: 20px;
  15.         }
  16.        
  17.         .box button {
  18.             margin-bottom: 10px;
  19.         }
  20.  
  21.         .box-1 {
  22.     background:#98bf21;
  23.     height:100px;
  24.     width:100px;
  25.  
  26.     position:relative;
  27.     top: 50px;
  28.     margin:6px;
  29. }
  30.     </style>
  31.     <div class="box">
  32.     </div><br>
  33.     <button id="hideBtn">Hide</button>
  34.     <button id="showBtn">Show</button>
  35.     <button id="fadeInBtn">Fade In</button>
  36.     <button id="fadeOutBtn">Fade Out</button>
  37.     <button id="slideUpBtn">Slide Up</button>
  38.     <button id="slideDownBtn">Slide Down</button>
  39.     <button id="toggleBtn">Toggle</button>
  40.     <button id="animateBtn">Animasi</button>
  41.  
  42.     <button>Animate!</button>
  43.     <div class="box-1"></div>
  44.     <script>
  45.      $(document).ready(function(){
  46.     // Hide Effect
  47.     $("#hideBtn").click(function(){
  48.       $(".box").hide(1000);
  49.     });
  50.  
  51.     // Show Effect
  52.     $("#showBtn").click(function(){
  53.       $(".box").show(1000);
  54.     });
  55.  
  56.     // Fade In Effect
  57.     $("#fadeInBtn").click(function(){
  58.       $(".box").fadeIn(1000);
  59.     });
  60.  
  61.     // Fade Out Effect
  62.     $("#fadeOutBtn").click(function(){
  63.       $(".box").fadeOut(1000);
  64.     });
  65.  
  66.     // Slide Up Effect
  67.     $("#slideUpBtn").click(function(){
  68.       $(".box").slideUp(1000);
  69.     });
  70.  
  71.     // Slide Down Effect
  72.     $("#slideDownBtn").click(function(){
  73.       $(".box").slideDown(1000);
  74.     });
  75.  
  76.     // Toggle Effect
  77.     $("#toggleBtn").click(function(){
  78.       $(".box").toggle(1000);
  79.     });
  80.  
  81.     // Animate Effect
  82.     $("#animateBtn").click(function(){
  83.       $(".box").animate({left: '200px', opacity: '0.5', height: '+=150px', width: '+=150px'}, 1000);
  84.     });
  85.  
  86.  
  87.   $('button').click(function() {
  88.     $('.box-1').animate({
  89.         'top': 0,
  90.     }, 500, 'linear');
  91. });
  92.   });
  93.    </script>
  94. </body>
  95. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement