The WeChat applet implements the ScrollNav component of YDUI,

Source: Internet
Author: User

Small programs implement the ScrollNav component of YDUI,

This article provides examples of code for implementing the scrolling navigation Effect of applets for your reference. The specific content is as follows:

Download DEMO

Implementation Principle

Use the Double scroll-view component to implement double scrolling!

WXML

<! -- Navigation scroll --> <scroll-view class = "tui-city-scroll" scroll-x = "true" scroll-into-view = "NAV {status}" scroll -with-animation = "true"> <text bindtap = "getStatus" id = "NAV {index}" class = "tui-nav-li {index = status? 'Tui-nav-active': ''}" data-index = "{index}" wx: for = "{navList }}" >{{ item }}</text> </scroll-view> <! -- List scroll area --> <view class = "tui-fixed-y"> <scroll-view class = "tui-city-scroll-y" scroll-y = "true" scroll-into-view = "NAV {status}" scroll-with-animation = "true"> <view wx: for = "{navList}"> <view id = "NAV {index}" class = "tui-list-head" >{{ item }}</view> <view class = "tui-list-li" >{{ item }}list {{ index }}</view> </scroll-view> </ view>

WXSS

.tui-fixed-x{ width: 100%; position: fixed; top: 0; left: 0;}.tui-city-scroll{ height: 80rpx; line-height: 80rpx; width: 100%; white-space: nowrap;}.tui-nav-li{ font-size: 30rpx; padding: 0 8rpx;}.tui-nav-li:first-child{padding-left: 16rpx;}.tui-nav-li:last-child{padding-right: 16rpx;}.tui-nav-active{color: red;}.tui-fixed-y{ width: 100%; height: calc(100% - 80rpx); position: fixed; bottom: 0; left: 0;}.tui-city-scroll-y{ padding: 0 20rpx; height: 100%; box-sizing: border-box;}.tui-list-head{ height: 50px; line-height: 50px; text-align: center; font-size: 30rpx; color: blue;}.tui-list-li{ height: 400px; padding: 10rpx; color: #fff; font-size: 50rpx; background-color: lightgreen;}

JS

Page ({data: {navList: ['today's preview', 'smoke stove recommend', 'Water purification and drinking recommend', 'dishwasher recommend', 'electric heating recommend ', 'Hot-burning recommend', 'disinfection cabinet recommend', 'embedded recommend', 'commercial Electric Appliance ', 'activity description'], status: 0}, getStatus (e) {this. setData ({status: e. currentTarget. dataset. index })}})

Note:

  • The scroll-view component must have a visible width for horizontal scrolling and a visible height for vertical scrolling;
  • The scroll-into-view attribute of the scroll-view component is used to locate the scroll by id.

Download DEMO

The above is all the content of this article. I hope it will be helpful for your learning and support for helping customers.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.