स्क्रॉल क्षैतिज सीएसएस

कोड उदाहरण

12
0

चिकना स्क्रॉल सीएसएस

html {
  scroll-behavior: smooth;
}

/* No support in IE, or Safari
You can use this JS polyfill for those */
http://iamdustan.com/smoothscroll/
9
0

क्षैतिज स्क्रॉल html

<div class="scrolling-wrapper">
  <div class="card"><h2>Card</h2></div>
  <div class="card"><h2>Card</h2></div>
  <div class="card"><h2>Card</h2></div>
  <div class="card"><h2>Card</h2></div>
  <div class="card"><h2>Card</h2></div>
  <div class="card"><h2>Card</h2></div>
  <div class="card"><h2>Card</h2></div>
  <div class="card"><h2>Card</h2></div>
  <div class="card"><h2>Card</h2></div>
</div>
.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;

  .card {
    display: inline-block;
  }
}
4
0

क्षैतिज स्क्रॉलबार सीएसएस छुपाएं

.x-scroll-disabled {
	overflow-x: hidden;
}
1
0

डिव स्क्रॉल करने योग्य क्षैतिज कैसे बनाएं

overflow-x: auto(show when needed) or hidden(never) or scroll(always scroll);
1
0

tablayout क्षैतिज स्क्रॉल

In Java:
tabLayout.setTabMode(MODE_SCROLLABLE) // Default is MODE_FIXED

In XML:
app:tabMode="scrollable"
0
0

सीएसएस क्षैतिज स्क्रॉल

.scroll{
	overflow-x: scroll;
	overflow-y: hidden;
	height: 80px;
  	white-space:nowrap
}

अन्य भाषाओं में

यह पृष्ठ अन्य भाषाओं में है

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................