Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/georgiowan/typedjq-rails
A jQuery typing animation script by mattboldt.
https://github.com/georgiowan/typedjq-rails
javascript jquery ruby-gem ruby-on-rails typed-js
Last synced: 12 days ago
JSON representation
A jQuery typing animation script by mattboldt.
- Host: GitHub
- URL: https://github.com/georgiowan/typedjq-rails
- Owner: GeorgioWan
- License: mit
- Created: 2016-01-29T07:09:18.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-04T04:29:40.000Z (over 7 years ago)
- Last Synced: 2024-09-14T22:08:29.939Z (3 months ago)
- Topics: javascript, jquery, ruby-gem, ruby-on-rails, typed-js
- Language: Ruby
- Homepage:
- Size: 21.5 KB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# TypedJQ-rails
[![Gem][gem-image]][gem-url]
[gem-image]: https://img.shields.io/gem/v/typedjq-rails.svg
[gem-url]: https://rubygems.org/gems/typedjq-railsThis gem is [**Typed.js**](https://github.com/mattboldt/typed.js) v1.1.4 for rails.
[View the live demo](http://www.mattboldt.com/demos/typed-js/) and you'll know how awsome it is, let's use it now! :sunglasses:
## Version Notice
This Gem is provided **Typed.js v1.1.4**(this ver is still in jquery), but the newest version of **Typed.js** is [![GitHub release](https://img.shields.io/github/release/mattboldt/typed.js.svg)]().
> Maybe take a day to update this :smile:
## Demo With Rails5 Project
Here is a [very simple demo](https://github.com/GeorgioWan/typed-rails-demo) on rails 5.
## Installation
#### 1. Add this line to your `Gemfile`:
```ruby
gem 'typedjq-rails'
```And then `$ bundle` it, or install it yourself as:
$ gem install typedjq-rails
#### 2. Add require to your `application.js`
```javascript
//= require jquery
//= require jquery.turbolinks
//= require jquery_ujs
...
//= require typed
//= require turbolinks
```## Usage
**HTML tags** [:speech_balloon:](https://github.com/mattboldt/typed.js/tree/master#html-tags)
```coffeescript
# Example in coffeescript
$(".yourelement").typed
string: ["Typed.js is a jQuery plugin."]
contentType: 'html' # or 'text'
```**Strings from static HTML (SEO Friendly)** [:speech_balloon:](https://github.com/mattboldt/typed.js/tree/master#strings-from-static-html-seo-friendly)
```coffeescript
# Example in coffeescript
$("#your-typed-bar").typed
stringsElement: $("#your-typed-strings")
```
~~And you must wrap each string in the `typed-strings` div with a ``~~
Now you can wrap the children element in the `typed-strings`!
```haml
/ Example in haml
#your-typed-strings
%p= "Typed.js is a jQuery plugin."
%p= "It types out sentences."
%h1= "This is h1 line, can be typed now."
%span= "Typed.js is really awesome."
%span#your-typed-bar
```**Line Breaks** [:speech_balloon:](https://github.com/mattboldt/typed.js/tree/master#line-breaks)
* contentType: 'html'
```coffeescript
# Example in coffeescript
$(".yourelement").typed
strings: ["Sentence with
line break."]
```* contentType: 'text'
Use `white-space: pre` in your typed text element, and then `\n` when typing out the strings.
```haml
/ Example in haml
%span#yourelement{ style: "white-space:pre" }
```
```coffeescript
# Example in coffeescript
$("#yourelement").typed
strings: ["Sentence with \n line break."]
```**Type Pausing** [:speech_balloon:](https://github.com/mattboldt/typed.js/tree/master#type-pausing)
```coffeescript
# Example in coffeescript
$("#yourelement").typed
strings: ["First ^1000 sentence.", "Second sentence."]
# Waits 1000ms after typing "First"
```**Customization** [:speech_balloon:](https://github.com/mattboldt/typed.js/tree/master#customization)
```coffeescript
# Example in coffeescript
$("#yourelement").typed
strings: ["First sentence.", "Second sentence."]
# Optionally use an HTML element to grab strings from (must wrap each string in a)
stringsElement: null
# typing speed
typeSpeed: 0
# time before typing starts
startDelay: 0
# backspacing speed
backSpeed: 0
# shuffle the strings
+ shuffle: false
# time before backspacing
backDelay: 500
# loop
loop: false
# false = infinite
loopCount: false
# show cursor
showCursor: true
# character for cursor
cursorChar: "|"
# attribute to type (null == text)
attr: null
# either html or text
contentType: 'html'
# call when done callback function
callback: function() {}
# starting callback function before each string
preStringTyped: function() {}
# callback for every typed string
onStringTyped: function() {}
# callback for reset
resetCallback: function() {}
```And if you really want to get more custom, please check [**Super Custom**](https://github.com/mattboldt/typed.js/tree/master#get-super-custom) in Typed.js.
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).