All Projects → gaomd → Mpvue Animated Number

gaomd / Mpvue Animated Number

Licence: other
微信小程序 mpvue 数字更新滚动动画组件 / An animated number component for mpvue

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Mpvue Animated Number

Planmaster
套餐助手:手机套餐对比选购小程序
Stars: ✭ 487 (+1375.76%)
Mutual labels:  wechat-mini-program, wechat-app, wechat
Wechat Miniprogram Ar 3d
A WeChat MiniProgram 3D that includes a Panorama Viewer and a 3D Viewer using the device orientation control.
Stars: ✭ 80 (+142.42%)
Mutual labels:  wechat-mini-program, wechat-app, wechat
Scuplus Wechat
We川大小程序[scuplus] 使用wepy开发的完善的校园综合小程序, 40+页面,前后端开源,包括成绩、课表、失物招领、图书馆、新闻资讯等等常见校园场景功能
Stars: ✭ 545 (+1551.52%)
Mutual labels:  wechat-mini-program, wechat-app, wechat
Rktk Wxx
软考题库微信小程序 ENJOY
Stars: ✭ 131 (+296.97%)
Mutual labels:  wechat-mini-program, wechat-app, wechat
Masterwechatapp
『微信小程序』优秀教程、轮子、开源项目 资源汇总
Stars: ✭ 826 (+2403.03%)
Mutual labels:  wechat-mini-program, wechat-app, wechat
Wechat Mini Shop
微信小程序商城,微信小程序微店,接口基于FaShop
Stars: ✭ 328 (+893.94%)
Mutual labels:  wechat-mini-program, wechat-app, wechat
Supermarketmini
基于wepy2.x 仿苏宁小店小程序,API采用go开发(已开源),项目正在开发中,欢迎加群:160301726
Stars: ✭ 73 (+121.21%)
Mutual labels:  wechat-mini-program, wechat-app, wechat
Ewa
Enhanced Wechat App Development Toolkit (微信小程序增强开发工具)。不同于 wepy 或者 mpvue,是一个轻量级小程序开发框架。支持原生小程序所有功能,无需学习,极易上手。支持转换为百度/字节跳动/QQ小程序。
Stars: ✭ 160 (+384.85%)
Mutual labels:  wechat-mini-program, wechat-app, mpvue
Alaweb
一套 Vue 代码,多端可用(H5、小程序、苹果App、安卓App、头条等)。系统含150+页面,200+组件(5端通用),30+元件(每个终端独立完成)
Stars: ✭ 837 (+2436.36%)
Mutual labels:  wechat-mini-program, wechat-app, mpvue
Wepy Mall
微信小程序--基于wepy 商城(微店)微信小程序 欢迎学习交流
Stars: ✭ 3,224 (+9669.7%)
Mutual labels:  wechat-mini-program, wechat-app, wechat
Weixin Java Miniapp Demo
基于Spring Boot 和 WxJava 实现的微信小程序Java后端Demo
Stars: ✭ 779 (+2260.61%)
Mutual labels:  wechat-mini-program, wechat-app, wechat
Wx Charts
微信小程序图表charts组件,Charts for WeChat Mini Program
Stars: ✭ 4,633 (+13939.39%)
Mutual labels:  wechat-app, wechat
Flutter mp
Bring your Flutter code to mini program
Stars: ✭ 533 (+1515.15%)
Mutual labels:  wechat-mini-program, wechat
Taro
开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/
Stars: ✭ 30,230 (+91506.06%)
Mutual labels:  wechat-mini-program, wechat
Wechat Miniprogram Examples
WeChat mini program examples. 微信小程序示例
Stars: ✭ 634 (+1821.21%)
Mutual labels:  wechat-app, wechat
Anka Tracker
Miniprogram user behavior tracking library. Supports task queues, automatically suspended and retry strategies.
Stars: ✭ 29 (-12.12%)
Mutual labels:  wechat-mini-program, wechat
Quietweather
☀️ Develop a weather wechat mini program application in two days - 两天撸一个天气应用微信小程序
Stars: ✭ 677 (+1951.52%)
Mutual labels:  wechat-mini-program, wechat
Python Weixin
微信(weixin|wechat) Python SDK 支持开放平台和公众平台 支持微信小程序云开发
Stars: ✭ 746 (+2160.61%)
Mutual labels:  wechat-app, wechat
Hioshop Admin
海风小店,开源商城,微信小程序商城管理后台,后台管理,VUE
Stars: ✭ 452 (+1269.7%)
Mutual labels:  wechat-mini-program, wechat-app
Qiniu Wxapp Sdk
qiniu SDK based on wxapp
Stars: ✭ 638 (+1833.33%)
Mutual labels:  wechat-mini-program, wechat

mpvue-animated-number

微信小程序 mpvue 数字更新滚动动画组件。

An animated number component for mpvue (a framework to develop WeChat Mini Program).

Demo

微信扫一扫以下小程序码查看真实效果。

Scan the following code with WeChat to see the real-world effects.

WeChat Mini Program Scan Code

Installation

$ npm i --save @gaomd/mpvue-animated-number

Usage

Using inside the mpvue SFC, update this.temperatureReading then the number will change accordingly with elegant animation.

// src/pages/home/home.vue

<template>
  <p class="temperature">
    <AnimatedNumber
      :value="temperatureReading"
      :precision="2"
    >
    </AnimatedNumber>
  </p>
</template>

<script>
  import AnimatedNumber from '@gaomd/mpvue-animated-number';

  export default {
    components: {
      AnimatedNumber,
    },
    data() {
      return {
        temperatureReading: 3.14,
      };
    },
  }
</script>

<style>
  /* optional */
  .temperature {
    line-height: 30px;
    font-size: 16px;
    text-align: center;
    font-weight: bolder;
    font-family: "Avenir Next Condensed", sans-serif;
    color: #333;
  }
</style>

License

Copyright (c) 2018 Mengdi Gao

Based on MIT Licensed Vue.js documentation.

This software is licensed under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].