All Projects → Jvaeyhcd → react-native-art-wave

Jvaeyhcd / react-native-art-wave

Licence: other
A concise water wave animation process view write by React Native Art.

Programming Languages

javascript
184084 projects - #8 most used programming language
objective c
16641 projects - #2 most used programming language
python
139335 projects - #7 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to react-native-art-wave

Uuwaveview
[iOS]带有波形效果的UI控件,可自定义波形线条的数量、颜色、振幅、传播速度等各种参数。
Stars: ✭ 18 (-60%)
Mutual labels:  wave
Hexo Theme Mellow
based on material design
Stars: ✭ 154 (+242.22%)
Mutual labels:  wave
RecordWaveView
a beatiful wave animation for recording ,support android Mp3 record
Stars: ✭ 62 (+37.78%)
Mutual labels:  wave
Paper Ripple
Material Design Ripple effect in pure JS & CSS.
Stars: ✭ 55 (+22.22%)
Mutual labels:  wave
Scituner
SciTuner is a guitar tuner written in Swift3
Stars: ✭ 118 (+162.22%)
Mutual labels:  wave
Wavefile
A Ruby gem for reading and writing sound files in Wave format (*.wav)
Stars: ✭ 193 (+328.89%)
Mutual labels:  wave
Gsyrecordwave
MP3音频录制,支持类似IOS原生的单边或者双边波形显示,低版本音频权限兼容,本地或者在线音频播放的波形显示,录制波形和播放波形会根据声音频率变色的功能,边播边缓存功能,简书入口http://www.jianshu.com/p/2448e2903b07
Stars: ✭ 810 (+1700%)
Mutual labels:  wave
Unity-Raymarched-Clouds-Simple-Wave
Unity project showcasing clouds volume rendering with raymarching, and a simple coloured wave.
Stars: ✭ 17 (-62.22%)
Mutual labels:  wave
Multiwaveheader
Wave,水波,Android 炫酷的多重水波纹 MultiWaveHeader
Stars: ✭ 1,643 (+3551.11%)
Mutual labels:  wave
DDSoundWave
根据语音绘制波浪动画
Stars: ✭ 16 (-64.44%)
Mutual labels:  wave
Waveview
🏄 WaveView 一个水波纹动画控件视图,支持波纹数,波纹振幅,波纹颜色,渐变色,波纹速度,波纹方向等属性完全可配。
Stars: ✭ 81 (+80%)
Mutual labels:  wave
React Native Waveview
WaveView for React-Native
Stars: ✭ 88 (+95.56%)
Mutual labels:  wave
Swellrt
SwellRT main project. Server, JavaScript and Java clients
Stars: ✭ 205 (+355.56%)
Mutual labels:  wave
Aplay
A Better(Maybe) iOS Audio Stream、Cache、Play Framework
Stars: ✭ 44 (-2.22%)
Mutual labels:  wave
Android-Wave-Recorder
A powerful and efficient library to record WAVE form audio files (WAV) in Android
Stars: ✭ 137 (+204.44%)
Mutual labels:  wave
Wave Simulator
A graphical 3D simulation of the wave and heat equations
Stars: ✭ 5 (-88.89%)
Mutual labels:  wave
Lkawavecircleprogressbar
一款带有双波浪动画的圆形进度指示器
Stars: ✭ 175 (+288.89%)
Mutual labels:  wave
SwiftyWave
Siri Waves View in Swift
Stars: ✭ 66 (+46.67%)
Mutual labels:  wave
JHSoundWaveView
音波图,声波图
Stars: ✭ 22 (-51.11%)
Mutual labels:  wave
Animsidebar
A SiderBar base on Android that has a beautiful anim
Stars: ✭ 220 (+388.89%)
Mutual labels:  wave

react-native-art-hcdwave

A concise water wave animation process view writed by React Native Art.

Install

npm i react-native-art-hcdwave

Run Example

yarn
yarn start
yarn run-ios            
yarn run-android        

Dependency

Android

Don't need any dependency. Android incloud the ART library.

iOS

  1. Right click on the project -> Add Files to Your Project Name -> Select Project path/node_modules/react-native/Libraries/ART/ART.xcodeproj.
  2. Add libART.a to 'Link Binary With Libraries'.

Example

import React, {Component} from 'react';
import {
  StyleSheet, 
  View
} from 'react-native';

import { HcdWaveView } from './src/components/HcdWaveView'

export default class App extends Component {
  render() {
    return (
      <View style={styles.container}>
        <HcdWaveView
          surfaceWidth = {230} 
          surfaceHeigth ={230}
          powerPercent = {76}
          type="dc"
          style = {{backgroundColor:'#FF7800'}}></HcdWaveView>
        <HcdWaveView
          surfaceWidth = {230} 
          surfaceHeigth ={230}
          powerPercent = {76}
          type="ac"
          style = {{backgroundColor:'#FF7800'}}></HcdWaveView>
      </View>
    )
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#18A4FD',
  }
});
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].