<html lang="en">
<head>
<title>Codekarnedo.com | Hide show</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<h2>jQuery Using Effects - Hide and Show Simple Js-css</h2>
<h3>Custome Toggle bar hide show for mobile</h3>
<h4>hide show singal btn</h4>
<div id="simple-menu-button">☰ Teach</div>
<div id="custome-drop-menu" style="display: none;">
<ol>
<li>Home</li>
<li>About Us</li>
<li>Service</li>
<li>Blog</li>
<li>Contact</li>
<li>Where does it come from?<br>
Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</li>
</ol>
</div>
<!-- plz un comment js cdn then you can us -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> -->
<script type="text/javascript">
$(document).ready(function(){
$('#simple-menu-button').click(function() {
$('#custome-drop-menu').toggle("slide");
});
});
</script>
</body>
</html>
jQuery-effects-hide-and-Show-simple-Js-css-example-toggle
1. जावास्क्रिप्ट को आसान बनाना
jQuery जावास्क्रिप्ट कोड को कम और आसान बनाता है। यह कई ब्राउज़र्स में काम करने वाले कोड लिखने की कठिनाई को कम करता है।
2. HTML एलिमेंट सेलेक्शन और मैनिपुलेशन
jQuery $ सिंटैक्स का उपयोग करके HTML एलिमेंट्स को आसानी से सेलेक्ट और मैनिपुलेट किया जा सकता है। जैसे कि:
javascript
// सभी पैराग्राफ को छुपाना
$("p").hide();
3. इवेंट हैंडलिंग
jQuery इवेंट्स को हैंडल करना बहुत आसान बनाता है। जैसे कि बटन क्लिक इवेंट:
javascript
// बटन पर क्लिक इवेंट
$("button").click(function(){
alert("बटन क्लिक किया गया!");
});
4. AJAX सपोर्ट
jQuery के साथ AJAX कॉल करना बहुत आसान होता है। यह बिना पेज को रीलोड किए सर्वर से डेटा प्राप्त करने की अनुमति देता है:
javascript
$.ajax({
url: "data.json",
success: function(result){
$("#div1").html(result);
}
});
5. एनिमेशन
jQuery के द्वारा आसान एनिमेशन बनाए जा सकते हैं जैसे कि स्लाइडिंग, फेडिंग आदि:
javascript
// फेड आउट एनिमेशन
$("#element").fadeOut("slow");
6. डॉम ट्रैवर्सल और मॉडिफिकेशन
jQuery के माध्यम से DOM ट्रैवर्सल करना और आवश्यकतानुसार एलिमेंट्स को जोड़ना, हटाना, या बदलना बहुत सरल हो जाता है।
7. चेनिंग
jQuery में चेनिंग का मतलब है कि एक के बाद एक कई मेथड्स को एक साथ जोड़कर चलाना:
javascript
$("#element").css("color", "red").slideUp(2000).slideDown(2000);
8. क्रॉस-ब्राउज़र कम्पैटिबिलिटी
jQuery विभिन्न वेब ब्राउज़र्स में कोड कम्पैटिबिलिटी की चिंता को कम करता है, इसलिए कोड लगभग सभी प्रमुख ब्राउज़र्स पर समान रूप से चलता है।
jQuery का उपयोग करना वेब डेवलपर्स के लिए बहुत ही सहायक है, क्योंकि यह जटिल जावास्क्रिप्ट टास्क्स को सरल और तेज़ बनाता है। यदि आपके पास और कोई विशिष्ट सवाल है jQuery के बारे में, तो बताइए!
Comments (0 )
Leave A Comment