久久久精品一区ed2k-女人被男人叉到高潮的视频-中文字幕乱码一区久久麻豆樱花-俄罗斯熟妇真实视频

微信小程序如何實現(xiàn)搖一搖

這篇文章將為大家詳細講解有關微信小程序如何實現(xiàn)搖一搖,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

成都創(chuàng)新互聯(lián)是一家專業(yè)從事成都網(wǎng)站設計、成都網(wǎng)站建設的網(wǎng)絡公司。作為專業(yè)網(wǎng)站建設公司,成都創(chuàng)新互聯(lián)依托的技術實力、以及多年的網(wǎng)站運營經(jīng)驗,為您提供專業(yè)的成都網(wǎng)站建設、全網(wǎng)整合營銷推廣及網(wǎng)站設計開發(fā)服務!

微信小程序目錄

為了更好的理解小程序和小程序開發(fā),我們首先來看一下項目的目錄。

首先看下根目錄下的app.json的文件,可以看到在”pages”的數(shù)組里,里面配置了每個界面,且包含了每個界面文件的目錄


微信小程序如何實現(xiàn)搖一搖 

我們接下來看一下page文件夾,可以看到每個頁面需要包含兩個文件,一個是js文件,是每個界面的入口,wxml的文件是每個界面的布局文件,wxss是樣式文件。


微信小程序如何實現(xiàn)搖一搖 

接下來看一下logs文件夾,在logs文件夾中比index文件夾中多出了一個logs.json的文件,logs.json這個文件配置了一個界面的title的信息。

為了更好的理解項目的結構,我們來一張gif圖。
微信小程序如何實現(xiàn)搖一搖

搖一搖項目實例

我們首先看一下測試效果
微信小程序如何實現(xiàn)搖一搖

添加圖片資源

微信小程序如何實現(xiàn)搖一搖

index.js

之前說過這個文件中監(jiān)聽并處理小程序的生命周期函數(shù)、聲明全局變量,調(diào)用框架提供的豐富的 API,相當于我們寫移動端時候的邏輯代碼。

//index.js
//獲取應用實例
var app = getApp()
Page({
 data: {
  circleList: [],//圓點數(shù)組
  awardList: [],//獎品數(shù)組
  colorCircleFirst: '#FFDF2F',//圓點顏色1
  colorCircleSecond: '#FE4D32',//圓點顏色2
  colorAwardDefault: '#F5F0FC',//獎品默認顏色
  colorAwardSelect: '#ffe400',//獎品選中顏色
  indexSelect: 0,//被選中的獎品index
  isRunning: false,//是否正在抽獎
  imageAward: [
   '../../images/1.jpg',
   '../../images/2.jpg',
   '../../images/3.jpg',
   '../../images/4.jpg',
   '../../images/5.jpg',
   '../../images/6.jpg',
   '../../images/7.jpg',
   '../../images/8.jpg',
  ],//獎品圖片數(shù)組
 },

 onLoad: function () {
  var _this = this;
  //圓點設置
  var leftCircle = 7.5;
  var topCircle = 7.5;
  var circleList = [];
  for (var i = 0; i < 24; i++) {
   if (i == 0) {
    topCircle = 15;
    leftCircle = 15;
   } else if (i < 6) {
    topCircle = 7.5;
    leftCircle = leftCircle + 102.5;
   } else if (i == 6) {
    topCircle = 15
    leftCircle = 620;
   } else if (i < 12) {
    topCircle = topCircle + 94;
    leftCircle = 620;
   } else if (i == 12) {
    topCircle = 565;
    leftCircle = 620;
   } else if (i < 18) {
    topCircle = 570;
    leftCircle = leftCircle - 102.5;
   } else if (i == 18) {
    topCircle = 565;
    leftCircle = 15;
   } else if (i < 24) {
    topCircle = topCircle - 94;
    leftCircle = 7.5;
   } else {
    return
   }
   circleList.push({ topCircle: topCircle, leftCircle: leftCircle });
  }
  this.setData({
   circleList: circleList
  })
  //圓點閃爍
  setInterval(function () {
   if (_this.data.colorCircleFirst == '#FFDF2F') {
    _this.setData({
     colorCircleFirst: '#FE4D32',
     colorCircleSecond: '#FFDF2F',
    })
   } else {
    _this.setData({
     colorCircleFirst: '#FFDF2F',
     colorCircleSecond: '#FE4D32',
    })
   }
  }, 500)
  //獎品item設置
  var awardList = [];
  //間距,怎么順眼怎么設置吧.
  var topAward = 25;
  var leftAward = 25;
  for (var j = 0; j < 8; j++) {
   if (j == 0) {
    topAward = 25;
    leftAward = 25;
   } else if (j < 3) {
    topAward = topAward;
    //166.6666是寬.15是間距.下同
    leftAward = leftAward + 166.6666 + 15;
   } else if (j < 5) {
    leftAward = leftAward;
    //150是高,15是間距,下同
    topAward = topAward + 150 + 15;
   } else if (j < 7) {
    leftAward = leftAward - 166.6666 - 15;
    topAward = topAward;
   } else if (j < 8) {
    leftAward = leftAward;
    topAward = topAward - 150 - 15;
   }
   var imageAward = this.data.imageAward[j];
   awardList.push({ topAward: topAward, leftAward: leftAward, imageAward: imageAward });
  }
  this.setData({
   awardList: awardList
  })
 },
 //開始游戲
 startGame: function () {
  if (this.data.isRunning) return
  this.setData({
   isRunning: true
  })
  var _this = this;
  var indexSelect = 0
  var i = 0;
  var timer = setInterval(function () {
   indexSelect++;
   //這里我只是簡單粗暴用y=30*x+200函數(shù)做的處理.可根據(jù)自己的需求改變轉(zhuǎn)盤速度
   i += 30;
   if (i > 1000) {
    //去除循環(huán)
    clearInterval(timer)
    //獲獎提示

    wx.showModal({
     title: '恭喜您',
     content: '獲得了第' + (_this.data.indexSelect + 1) + "個優(yōu)惠券",
     showCancel: false,//去掉取消按鈕
     success: function (res) {
      if (res.confirm) {
       _this.setData({
        isRunning: false
       })
      }
     }
    })
   }
   indexSelect = indexSelect % 8;
   _this.setData({
    indexSelect: indexSelect
   })
  }, (200 + i))
 }
})

index.json

這個文件是配置文件。這里我們不需要配置。

index.wxss

index.wxss 是整個小程序的樣式表,如這個搖獎對應得搖一搖樣式。對css熟悉的肯定不會陌生。

/**index.wxss**/

.container-out {
 height: 600rpx;
 width: 650rpx;
 background-color: #b136b9;
 margin: 100rpx auto;
 border-radius: 40rpx;
 box-shadow: 0 10px 0 #871a8e;
 position: relative;
}

.container-in {
 width: 580rpx;
 height: 530rpx;
 background-color: #871a8e;
 border-radius: 40rpx;
 position: absolute;
 left: 0;
 right: 0;
 top: 0;
 bottom: 0;
 margin: auto;
}

/**小圓球
box-shadow: inset 3px 3px 3px #fff2af;*/

.circle {
 position: absolute;
 display: block;
 border-radius: 50%;
 height: 20rpx;
 width: 20rpx;
}

.content-out {
 position: absolute;
 height: 150rpx;
 width: 166.6666rpx;
 background-color: #f5f0fc;
 border-radius: 15rpx;
 box-shadow: 0 5px 0 #d87fde;
}

/**居中 加粗*/

.start-btn {
 position: absolute;
 margin: auto;
 top: 0;
 left: 0;
 bottom: 0;
 right: 0;
 border-radius: 15rpx;
 height: 150rpx;
 width: 166.6666rpx;
 background-color: #ffe400;
 box-shadow: 0 5px 0 #e7930a;
 color: #f6251e;
 text-align: center;
 font-size: 55rpx;
 font-weight: bolder;
 line-height: 150rpx;
}

.award-image {
 position: absolute;
 margin: auto;
 top: 0;
 left: 0;
 bottom: 0;
 right: 0;
 height: 140rpx;
 width: 130rpx;
}

index.wxml

index.wxml 是頁面的結構文件,如果有需要就需要配置。這里大家可以參照項目的文檔說明

<!--index.wxml-->
<view class="container-out">
 <view class="circle" wx:for="{{circleList}}" ></view>
 <view class="container-in">
  <view class="content-out" wx:for="{{awardList}}" >
   <image class="award-image" src="{{item.imageAward}}"></image>
  </view>
  <view class="start-btn" bindtap="startGame" >START</view>
 </view>
</view>

關于“微信小程序如何實現(xiàn)搖一搖”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

網(wǎng)站題目:微信小程序如何實現(xiàn)搖一搖
網(wǎng)站鏈接:http://sd-ha.com/article44/jgeoee.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站導航品牌網(wǎng)站建設、網(wǎng)站營銷、網(wǎng)站設計、網(wǎng)站維護

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都做網(wǎng)站