No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    Display avatars/thumbs as horizontal list below slider/image gallery

    Help
    3
    5
    2925
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • H
      hata last edited by

      I want to display avatars/thumbs as horizontal list below slider/image gallery. Can we custom dots as same as custom action ? Could you please guide me how to config or implement them ?

      Martin 1 Reply Last reply Reply Quote 0
      • Martin
        Martin @hata last edited by

        @hata I don’t think that’s possible right now, but maybe a nice feature request.
        You can also create your own horizontal scrollbar like this:

        0_1486316420613_upload-4714cff3-9b2a-43f4-8f11-a251d8153794

        https://jsfiddle.net/maartenfb/ak1wxLLk/

        html

        <div class="scrollmenu"> 
        <!-- use a v-for here -->
           <div class="thumbnail">hello</div>
           <div class="thumbnail">hello</div>
           <div class="thumbnail">hello</div>
           <div class="thumbnail">hello</div>
        </div>
        

        css

         div.scrollmenu {
            background-color : #333;
            overflow         : auto;
            white-space      : nowrap;
          }
        
          div.scrollmenu .thumbnail {
            display         : inline-block;
            color           : white;
            padding         : 10px;
            width           : 200px;
          }
        
        1 Reply Last reply Reply Quote 1
        • rstoenescu
          rstoenescu Admin last edited by

          Will create a horizontal list.

          1 Reply Last reply Reply Quote 0
          • H
            hata last edited by

            I can display thumbnail but I can change active thumbnail when the slider is change, how to get active slider when user swipe to set active for thumbnail ?

            1 Reply Last reply Reply Quote 0
            • Martin
              Martin last edited by

              Like this?
              http://forum.quasar-framework.org/topic/227/horizontal-thumbnail-slider-with-selected-image-on-top

              1 Reply Last reply Reply Quote 0
              • First post
                Last post