Advertisement
brandblox

WebLab-3.3-(15/10/24)

Oct 15th, 2024
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>jQuery Methods Example</title>
  7.     <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  8.     <style>
  9.         #box {
  10.             width: 200px;
  11.             height: 200px;
  12.             background-color: lightblue;
  13.             display: none;
  14.         }
  15.  
  16.         #animateBox {
  17.             width: 100px;
  18.             height: 100px;
  19.             background-color: green;
  20.             position: relative;
  21.         }
  22.  
  23.         #popup {
  24.             display: none;
  25.             padding: 10px;
  26.             border: 1px solid black;
  27.             background-color: lightyellow;
  28.         }
  29.     </style>
  30. </head>
  31. <body>
  32.  
  33.     <button id="showPopup">Show Popup</button>
  34.     <div id="popup">This is a popup without using alert!</div>
  35.  
  36.     <h1 id="heading">Hover and Double Click Me!</h1>
  37.     <p id="description">This is a sample paragraph.</p>
  38.  
  39.     <div id="box">Sliding Box</div>
  40.  
  41.     <button id="slideDownBtn">Slide Down</button>
  42.     <button id="fadeInBtn">Fade In</button>
  43.     <button id="hideBtn">Hide</button>
  44.     <button id="showBtn">Show</button>
  45.  
  46.     <div id="animateBox">Animating Box</div>
  47.  
  48.     <script>
  49.         // Popup box (not using alert)
  50.         $('#showPopup').click(function() {
  51.             $('#popup').slideDown();
  52.         });
  53.  
  54.         // slideDown()
  55.         $('#slideDownBtn').click(function() {
  56.             $('#box').slideDown();
  57.         });
  58.  
  59.         // animate()
  60.         $('#animateBox').dblclick(function() {
  61.             $(this).animate({ left: '+=100px', height: '150px', width: '150px' }, 1000);
  62.         });
  63.  
  64.         // fadeIn()
  65.         $('#fadeInBtn').click(function() {
  66.             $('#box').fadeIn();
  67.         });
  68.  
  69.         // hide()
  70.         $('#hideBtn').click(function() {
  71.             $('#box').hide();
  72.         });
  73.  
  74.         // show()
  75.         $('#showBtn').click(function() {
  76.             $('#box').show();
  77.         });
  78.  
  79.         // mouseenter() and mouseleave()
  80.         $('#heading').mouseenter(function() {
  81.             $(this).css('color', 'red');
  82.         }).mouseleave(function() {
  83.             $(this).css('color', 'black');
  84.         });
  85.  
  86.         // dblclick()
  87.         $('#heading').dblclick(function() {
  88.             $(this).html('You double-clicked me!');
  89.         });
  90.  
  91.         // attr() and html()
  92.         $('#description').mouseenter(function() {
  93.             $(this).attr('title', 'Hovering over the paragraph!');
  94.             $(this).html('The content of this paragraph has changed!');
  95.         });
  96.     </script>
  97. </body>
  98. </html>
  99.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement