Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> CSS

सीएसएस में लंबन स्क्रॉलिंग प्रभाव कैसे बनाएं

<घंटा/>

पृष्ठभूमि और अग्रभूमि सामग्री के लिए अलग-अलग गति निर्दिष्ट करके, हम CSS का उपयोग करके एक लंबन स्क्रॉलिंग प्रभाव बना सकते हैं।

निम्न उदाहरण CSS लंबन स्क्रॉलिंग प्रभाव दिखाता है -

उदाहरण

<!DOCTYPE html>
<html>
<head>
<style>
body, html {
   height: 100%;
   text-align: center;
}
.example {
   height: 100%;
   background-attachment: fixed;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}
#demo {
   background: url("https://images.unsplash.com/photo-1612698565524- 1101522e9a21?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=600&ixlib=rb1.2.1&q=80&w=800");
}
#dist {
   height:150px;
   background-color: rgba(102,234,99,0.5);
   padding: 2%;
}
#d2 {
   background: url("https://images.unsplash.com/photo-1611489473774-5d881f1153f1?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=600&ixlib=rb1.2.1&q=80&w=800");
}
</style>
</head>
<body>
<div id="demo" class="example"></div>
<div id="dist">
Sed a porttitor enim. Integer euismod dui massa, at posuere sem fermentum at. Fusce vehicula
fringilla tortor, ut mattis sapien tristique ac. Phasellus eleifend malesuada orci, et facilisis arcu
egestas vel. Duis in tempus libero. Nunc nibh arcu, tempus quis lectus ut, blandit tincidunt felis. Suspendisse potenti.
</div>
<div id="d2" class="example"></div>
</body>
</html>

आउटपुट

यह निम्नलिखित परिणाम देगा -

सीएसएस में लंबन स्क्रॉलिंग प्रभाव कैसे बनाएं

सीएसएस में लंबन स्क्रॉलिंग प्रभाव कैसे बनाएं


  1. सीएसएस के साथ तीर कैसे बनाएं?

    सीएसएस के साथ तीर बनाने के लिए, कोड इस प्रकार है - उदाहरण <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       font-family: "Segoe UI", Tahoma,

  1. CSS में बॉर्डर इमेज कैसे बनाएं

    सीएसएस में बॉर्डर इमेज बनाने के लिए, बॉर्डर-इमेज प्रॉपर्टी का इस्तेमाल करें। CSS में बॉर्डर इमेज बनाने के लिए कोड निम्नलिखित है - उदाहरण body { font-family:Segoe UI, Tahoma, Geneva, Verdana, sans-serif;}.border1 { बॉर्डर:10px सॉलिड ट्रांसपेरेंट; पैडिंग:15 पीएक्स; बॉर्डर-इमेज:url (https://i.picsum.ph

  1. सीएसएस में लंबन स्क्रॉलिंग प्रभाव कैसे बनाएं

    पृष्ठभूमि और अग्रभूमि सामग्री के लिए अलग-अलग गति निर्दिष्ट करके, हम CSS का उपयोग करके एक लंबन स्क्रॉलिंग प्रभाव बना सकते हैं। निम्न उदाहरण CSS लंबन स्क्रॉलिंग प्रभाव दिखाता है - उदाहरण <!DOCTYPE html> <html> <head> <style> body, html {    height: 100%;