All Projects → fabiosoft → Fnreactionsview

fabiosoft / Fnreactionsview

Licence: mit
FNReactionsView is a customizable control (based on UIView) to give people a way to show floating emoji like facebook does during live stream, easy way.

Programming Languages

ruby
36898 projects - #4 most used programming language
swift
15916 projects

Projects that are alternatives of or similar to Fnreactionsview

Photoeditor
A Photo Editor library with simple, easy support for image editing using paints,text,filters,emoji and Sticker like stories.
Stars: ✭ 3,105 (+3468.97%)
Mutual labels:  facebook, emoji
react-reactions
😲 Create custom reaction pickers and counters or use your favorites!
Stars: ✭ 34 (-60.92%)
Mutual labels:  emoji, facebook
Wdt Emoji Bundle
Slack like emoji picker with apple/ios, twitter/twemoji, google, emojione, facebook, messenger emoji support
Stars: ✭ 411 (+372.41%)
Mutual labels:  facebook, emoji
no-facebook-emoji
Get rid of those ugly emojis now! [stopped working 😢]
Stars: ✭ 15 (-82.76%)
Mutual labels:  emoji, facebook
Opensource Socialnetwork
Open Source Social Network (OSSN) is a social networking software written in PHP. It allows you to make a social networking website and helps your members build social relationships, with people who share similar professional or personal interests. It is available in 16 international languages.
Stars: ✭ 710 (+716.09%)
Mutual labels:  facebook, emoji
Laravel Smartmd
🎯 A simple markdown editor compatible most markdown parse,You can choose any parse methods on server or client,like Mathematical formula、flowchart、upload image...
Stars: ✭ 76 (-12.64%)
Mutual labels:  emoji
Android
Android projects with reusable components which will be useful in your applications.
Stars: ✭ 81 (-6.9%)
Mutual labels:  facebook
Network Avatar Picker
A npm module that returns user's social network avatar. Supported providers: facebook, instagram, twitter, tumblr, vimeo, github, youtube and gmail
Stars: ✭ 74 (-14.94%)
Mutual labels:  facebook
Skraper
Kotlin/Java library and cli tool for scraping posts and media from various sources with neither authorization nor full page rendering (Facebook, Instagram, Twitter, Youtube, Tiktok, Telegram, Twitch, Reddit, 9GAG, Pinterest, Flickr, Tumblr, IFunny, VK, Pikabu)
Stars: ✭ 72 (-17.24%)
Mutual labels:  facebook
Emoji For Jekyll
A plugin for Jekyll that seamlessly enable emoji.
Stars: ✭ 86 (-1.15%)
Mutual labels:  emoji
Emojivision
A 200 something line Swift Playground for rendering images as emojis
Stars: ✭ 84 (-3.45%)
Mutual labels:  emoji
Spam Bot 3000
Social media research and promotion, semi-autonomous CLI bot
Stars: ✭ 79 (-9.2%)
Mutual labels:  facebook
Emoji
A simple library to add Emoji support to your Android Application
Stars: ✭ 1,201 (+1280.46%)
Mutual labels:  emoji
React Native Animated Emoji
Animated Floating Reactions like Facebook 👍
Stars: ✭ 82 (-5.75%)
Mutual labels:  emoji
Phpumoji
PHPUnit Emoji Result Printer
Stars: ✭ 75 (-13.79%)
Mutual labels:  emoji
Countries
Countries - ISO 3166 (ISO3166-1, ISO3166, Digit, Alpha-2 and Alpha-3) countries codes and names (on eng and rus), ISO 4217 currency designators, ITU-T E.164 IDD calling phone codes, countries capitals, UN M.49 regions codes, ccTLD countries domains, IOC/NOC and FIFA letters codes, VERY FAST, NO maps[], NO slices[], NO init() funcs, NO external links/files/data, NO interface{}, NO specific dependencies, Databases/JSON/GOB/XML/CSV compatible, Emoji countries flags and currencies support, full support ISO-3166-1, ISO-4217, ITU-T E.164, Unicode CLDR and ccTLD standarts.
Stars: ✭ 85 (-2.3%)
Mutual labels:  emoji
Rime pure
【rime小狼毫\trime同文】手机/PC一站式配置【简约皮肤\拼音搜狗词库\原创trime同文四叶草九宫格拼音方案\四叶草拼音、小鹤双拼、极品五笔、徐码、郑码】 rime配置
Stars: ✭ 73 (-16.09%)
Mutual labels:  emoji
Embed Js
🌻 A lightweight plugin to embed emojis, media, maps, tweets, code and more. ✨
Stars: ✭ 1,220 (+1302.3%)
Mutual labels:  emoji
Qq Wechat Emotion Parser
QQ、微信表情符号解析:字符串到图片URL
Stars: ✭ 82 (-5.75%)
Mutual labels:  emoji
Emoji
emoji terminal output for Python
Stars: ✭ 1,215 (+1296.55%)
Mutual labels:  emoji

FNReactionsView is a customizable control (based on UIView) to give people a way to show floating emoji like facebook does during live stream, easy way.

FNReactionsView

RequirementsUsageInstallationContributionContactLicense

Requirements

  • iOS 8.0+
  • Xcode 8.0+
  • Swift 3.0+

Usage

Reaction

A FNReactionsView object is a simple view

override func viewDidLoad() {
    super.viewDidLoad()
    reactionsView = FNReactionsView()
    if let reactionsView = reactionsView{
        reactionsView.backgroundColor = .clear
        view.addSubview(reactionsView)
        
        reactionsView.snp.makeConstraints({ (make) in
            make.top.left.right.equalToSuperview()
            make.height.equalTo(300)
        })
    }
}

(thanks to SnapKit for easy constraints handling)

For easy demonstration you can add a tap gesture to trigger the animation in you viewDidLoad

view.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(handleTap)))

and the the handler

func handleTap(){
    let reactions = [#imageLiteral(resourceName: "love"), #imageLiteral(resourceName: "angry"), #imageLiteral(resourceName: "ill"), #imageLiteral(resourceName: "devil")]
    (0...10).forEach { (_) in
        let image = reactions[Int(arc4random_uniform(UInt32(reactions.count)))]
        reactionsView?.showReaction(image: image)
    }
}

Installation

CocoaPods

Install CocoaPods if not already available:

$ [sudo] gem install cocoapods
$ pod setup

Go to the directory of your Xcode project, and Create and Edit your Podfile and add FNReactionsView:

$ cd /path/to/MyProject
$ touch Podfile
$ edit Podfile
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'

use_frameworks!
pod 'FNReactionsView'

Install into your project:

$ pod install

Open your project in Xcode from the .xcworkspace file (not the usual project file):

$ open MyProject.xcworkspace

You can now import FNReactionsView framework into your files.

Manually

Download the project and copy the FNReactionsView folder into your project to use it in.

Contribution

Contributions are welcome . Inspired by Brian Voong

Contact

Fabio Nisci • [email protected]

License (MIT)

Copyright (c) 2017-present - Fabio Nisci

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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].