zoukankan      html  css  js  c++  java
  • 安卓前端开发中的几种常用框架

       1.效果图

    2.代码的实现

    .wxml

    <view class="swiper-tab">
      <view class="swiper-tab-list {{currentTab==0 ? 'on' : ''}}" data-current="0" bindtap="swichNav">全部</view>
      <view class="swiper-tab-list {{currentTab==1 ? 'on' : ''}}" data-current="1" bindtap="swichNav">正在拍</view>
      <view class="swiper-tab-list {{currentTab==2 ? 'on' : ''}}" data-current="2" bindtap="swichNav">我拍中</view>
      <view class="swiper-tab-list {{currentTab==3 ? 'on' : ''}}" data-current="3" bindtap="swichNav">待付款</view>
    </view>
    <swiper current="{{currentTab}}" class="swiper-box" duration="300" style="height:{{winHeight - 31}}px" bindchange="bindChange">
      <swiper-item>
        <view>
          <image src='{{image}}' class='img'></image>
        </view>
      </swiper-item>

      <swiper-item>
        <view>
          <image src='{{image}}' class='img'></image>
        </view>
      </swiper-item>

      <swiper-item>
        <view>
          <image src='{{image}}' class='img'></image>
        </view>
      </swiper-item>
     
    <swiper-item>
       <view>
          <image src='{{image}}' class='img'></image>
        </view>
      </swiper-item>
     
    </swiper>
     
     
     
    .wxss
    Page {
     
    }

    .swiper-tab {
      background-color: #fff;
     
      100%;
      text-align: center;
      line-height: 60rpx;
    }

    .swiper-tab-list {
      font-size: 27rpx;
      display: inline-block;
      25%;

    }

    .on {
      color: #FF8600;
      border-bottom: 5rpx solid #ff7300;
    }

    .swiper-box {
      display: block;
      height: 100%;
      100%;
      overflow: hidden;
    }

    .img {
      200rpx;
      height: 200rpx;
      position: relative;
      top: 300rpx;
      left: 270rpx;

    }
    .js
     
    Page({
      data: {
        winWidth: 0,
    winHeight: 0,
    currentTab: 0,
        image: "../../images/touxiang.png",
      },
      onLoad: function (options) {

      },
      onReady: function () {
        var that = this;
        wx.getSystemInfo({
          success: function (res) {
            that.setData({
              winWidth: res.windowWidth,
    winHeight: res.windowHeight
            });
          }
        });
      },
      // 滑动切换tab
      bindChange: function (e) {
        var that = this;
        that.setData({
          currentTab: e.detail.current
        });
      },
      // 点击tab切换
      swichNav: function (e) {
        var that = this;
        if (this.data.currentTab === e.target.dataset.current) {
          return false;
        } else {
          that.setData({
            currentTab: e.target.dataset.current
          })
        }
      },
      onShow: function () {

      },
      onHide: function () {

      },
      onUnload: function () {

      },
    })
     
  • 相关阅读:
    C++中的关键概念:名字查找与继承
    调用哪个虚函数的问题
    二叉树基础知识
    赫夫曼树及其应用
    用MyEclipse搭建SSH框架 Struts Spring Hibernate
    数据库 事务的特性ACID
    网桥与交涣机
    Adobe Edge Animate 1.0 概述
    【官方】Adobe Edge Preview 3 初学者指南
    Adobe Edge , Flash 未来的方向?
  • 原文地址:https://www.cnblogs.com/1322957664qqcom/p/10827475.html
Copyright © 2011-2022 走看看