久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    • <bdo id='hGsBL'></bdo><ul id='hGsBL'></ul>
    <legend id='hGsBL'><style id='hGsBL'><dir id='hGsBL'><q id='hGsBL'></q></dir></style></legend>

    1. <tfoot id='hGsBL'></tfoot>
    2. <small id='hGsBL'></small><noframes id='hGsBL'>

        <i id='hGsBL'><tr id='hGsBL'><dt id='hGsBL'><q id='hGsBL'><span id='hGsBL'><b id='hGsBL'><form id='hGsBL'><ins id='hGsBL'></ins><ul id='hGsBL'></ul><sub id='hGsBL'></sub></form><legend id='hGsBL'></legend><bdo id='hGsBL'><pre id='hGsBL'><center id='hGsBL'></center></pre></bdo></b><th id='hGsBL'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='hGsBL'><tfoot id='hGsBL'></tfoot><dl id='hGsBL'><fieldset id='hGsBL'></fieldset></dl></div>

        如何在ionic 3中進行水平滾動

        how to do horizontal scroll in ionic 3(如何在ionic 3中進行水平滾動)
          <tbody id='TMuWF'></tbody>

      1. <tfoot id='TMuWF'></tfoot>

          <small id='TMuWF'></small><noframes id='TMuWF'>

          • <bdo id='TMuWF'></bdo><ul id='TMuWF'></ul>

              <legend id='TMuWF'><style id='TMuWF'><dir id='TMuWF'><q id='TMuWF'></q></dir></style></legend>
                <i id='TMuWF'><tr id='TMuWF'><dt id='TMuWF'><q id='TMuWF'><span id='TMuWF'><b id='TMuWF'><form id='TMuWF'><ins id='TMuWF'></ins><ul id='TMuWF'></ul><sub id='TMuWF'></sub></form><legend id='TMuWF'></legend><bdo id='TMuWF'><pre id='TMuWF'><center id='TMuWF'></center></pre></bdo></b><th id='TMuWF'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='TMuWF'><tfoot id='TMuWF'></tfoot><dl id='TMuWF'><fieldset id='TMuWF'></fieldset></dl></div>

                  本文介紹了如何在ionic 3中進行水平滾動的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  看看我的

                  我在 ion-scroll 中有 10 個名字,但它會像段落一樣進入下一行.

                  這是我的 .html 代碼.

                  這是我的css

                  .headerChipGray{ion-chip.chip.chip-md{邊距:2px 2px 2px 2px;邊框半徑:10px;邊框:1px 純灰色;背景:白色;}ion-chip.chip.chip-ios{邊距:2px 2px 2px 2px;邊框半徑:10px;邊框:1px 純灰色;背景:白色;}}.headerChipGreen{ion-chip.chip.chip-md{邊距:2px 2px 2px 2px;邊框半徑:10px;背景:白色;顏色:#A80C50;邊框:1px 實心#A80C50;}ion-chip.chip.chip-ios{邊距:2px 2px 2px 2px;邊框半徑:10px;背景:白色;顏色:#A80C50;邊框:1px 實心#A80C50;}}

                  <塊引用>

                  更新到 ionic 3 后,這段代碼曾在 ionic 2 中工作,我正面臨這個問題,我缺少用于 ion-scroll 的 ionic doc

                  解決方案

                  看起來像 ion-row 在你的卷軸內包裹著物品.

                  嘗試使用 nowrap 屬性.

                  <塊引用>

                  添加 flex-wrap: nowrap.將列強制為單行.

                  look at my

                  I have 10 names in the ion-scroll but it is coming to the next line like a paragraph.

                  here is my .html code.

                  <ion-scroll scrollX="true" style="width:100vw; height:50px" >
                          <ion-row class="headerChip">
                            <div *ngFor="let tabName of product_type; let idx = index" [ngClass]="showSelectedTabArray[idx].showSelectedTab ? 'headerChipGray' : 'headerChipGreen'">
                            <ion-chip  (click)="changeData(tabName)">
                            <ion-label  >{{tabName.languagename}}</ion-label>
                            <div></div>
                            </ion-chip>
                            </div>
                          </ion-row>
                        </ion-scroll>
                  

                  here is my css

                  .headerChipGray{
                      ion-chip.chip.chip-md{
                          margin: 2px 2px 2px 2px;
                          border-radius: 10px;
                          border: 1px solid gray;
                          background: white;
                      }
                      ion-chip.chip.chip-ios{
                          margin: 2px 2px 2px 2px;
                          border-radius: 10px;
                          border: 1px solid gray;
                          background: white;
                      }
                  }
                  
                  .headerChipGreen{
                  
                      ion-chip.chip.chip-md{
                          margin: 2px 2px 2px 2px;
                          border-radius: 10px;
                          background: white;
                          color: #A80C50;
                          border: 1px solid #A80C50;
                      }
                  
                      ion-chip.chip.chip-ios{
                          margin: 2px 2px 2px 2px;
                          border-radius: 10px;
                          background: white;
                          color: #A80C50;
                          border: 1px solid #A80C50;
                      }
                  }
                  

                  this same piece of code used to work in ionic 2 after updating to ionic 3 i am facing this issue what i am missing ionic doc for ion-scroll

                  解決方案

                  It looks like ion-row within your scroll is wrapping the items.

                  Try using nowrap attribute.

                  Adds flex-wrap: nowrap. Forces the columns to a single row.

                  <ion-scroll scrollX="true" style="width:100vw; height:50px" >
                    <ion-row nowrap class="headerChip">
                      <div *ngFor="let tabName of product_type; let idx = index" [ngClass]="showSelectedTabArray[idx].showSelectedTab ? 'headerChipGray' : 'headerChipGreen'">
                      <ion-chip  (click)="changeData(tabName)">
                      <ion-label  >{{tabName.languagename}}</ion-label>
                      <div></div>
                      </ion-chip>
                      </div>
                    </ion-row>
                  </ion-scroll>
                  

                  這篇關于如何在ionic 3中進行水平滾動的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Use IScroll in Angular 2 / Typescript(在 Angular 2/Typescript 中使用 IScroll)
                  anime.js not working in Ionic 3 project(Anime.js 在 Ionic 3 項目中不起作用)
                  Angular 2: file not found on local .json file(Angular 2:在本地 .json 文件中找不到文件)
                  Use ViewChild for dynamic elements - Angular 2 amp; ionic 2(將 ViewChild 用于動態元素 - Angular 2 amp;離子2)
                  How to reload the ion-page after pop() in ionic2(如何在 ionic2 中的 pop() 之后重新加載離子頁面)
                  Retrieve localstorage value when value is change in Ionic 2(當 Ionic 2 中的值發生變化時檢索本地存儲值)
                      <tbody id='oKE8j'></tbody>

                    <tfoot id='oKE8j'></tfoot>

                    1. <legend id='oKE8j'><style id='oKE8j'><dir id='oKE8j'><q id='oKE8j'></q></dir></style></legend>

                      <small id='oKE8j'></small><noframes id='oKE8j'>

                      • <i id='oKE8j'><tr id='oKE8j'><dt id='oKE8j'><q id='oKE8j'><span id='oKE8j'><b id='oKE8j'><form id='oKE8j'><ins id='oKE8j'></ins><ul id='oKE8j'></ul><sub id='oKE8j'></sub></form><legend id='oKE8j'></legend><bdo id='oKE8j'><pre id='oKE8j'><center id='oKE8j'></center></pre></bdo></b><th id='oKE8j'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='oKE8j'><tfoot id='oKE8j'></tfoot><dl id='oKE8j'><fieldset id='oKE8j'></fieldset></dl></div>
                          <bdo id='oKE8j'></bdo><ul id='oKE8j'></ul>

                          1. 主站蜘蛛池模板: 国产99在线 | 欧美 | 成人精品国产免费网站 | 国产精品视频一区二区三区不卡 | 美女黄频| 欧美黄色一级毛片 | 日韩一区二区在线视频 | av网站在线播放 | 国产成人小视频 | 大象视频一区二区 | 四虎影视免费观看 | 色呦呦在线| 91久久国产综合久久 | 在线欧美亚洲 | 国产精品亚洲精品日韩已方 | 欧美久久一级特黄毛片 | 亚洲欧美日韩国产综合 | 久久中文字幕一区 | 天天操天天插天天干 | 久久com | 中文字幕国 | 中文字幕电影在线观看 | 精品一区二区在线看 | 自拍偷拍精品 | 日韩一区二区在线视频 | 亚洲电影在线播放 | 日韩欧美在线观看一区 | 日韩精品成人免费观看视频 | 一区二区在线视频 | 亚洲国产精品99久久久久久久久 | 日韩免费一级 | 亚洲人人| 日日夜夜天天干 | 中文字幕一区二区三区精彩视频 | 欧美另类视频 | 成人免费视频网站在线看 | 久久久国产精品 | 精品视频一区二区三区在线观看 | 免费精品久久久久久中文字幕 | 日本精品一区二区 | 欧美视频在线播放 | 一本一道久久a久久精品蜜桃 |