Skip to content

Commit c1a43bc

Browse files
committedMar 25, 2015
Updated layout + readme, added demo page
1 parent d837355 commit c1a43bc

File tree

4 files changed

+54
-4
lines changed

4 files changed

+54
-4
lines changed
 

‎README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ A floating round material button that has animations between states.
44
## Screenshot animation
55
![Animation](screenshot.gif)
66

7+
## Demo
8+
[Click here](http://button.dirkjanwassink.nl)
9+
710
## States
811
Currently the following icons/states are supported:
912
* equals
@@ -22,7 +25,7 @@ Currently the following icons/states are supported:
2225
* arrow-up
2326

2427
## Usage
25-
Be sure to first run a `npm bower install` to get the required libraries. Now simply use the following snippit:
28+
Be sure to first run a `npm bower install` to get the required libraries. Now simply use the following snippet:
2629

2730
```
2831
<div class="icon-container" data-ripple-color="#ffffff">
@@ -34,7 +37,7 @@ Be sure to first run a `npm bower install` to get the required libraries. Now si
3437
</div>
3538
```
3639

37-
Change the class `equals` to any class you want to use (see States);
40+
Change the class `equals` to any class you want to use (see [States](#states))
3841

3942
## Issues
4043
Play and pause button are a bit funky. Need to find a way to display them without border attributes.

‎index.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@
99

1010
<body>
1111

12+
<div id="controls">
1213
<label>
1314
Scale:
1415
<input id="icon-size" type="number" value="6">
1516
</label>
16-
<span id="toggle-icon">Toggle</sapn>
17+
<button type="text" id="toggle-icon">Toggle visibility</button>
18+
</div>
1719

1820
<div class="icon-container" data-ripple-color="#ffffff">
1921
<div class="icon-holder equals">

‎javascripts/main.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
$(document).ready(function () {
2+
var animations = ['equals', 'pause', 'check', 'arrow-left', 'min', 'stop', 'cross', 'arrow-right', 'close', 'arrow-down', 'hamburger', 'search', 'play', 'arrow-up'];
23
var animationIndex = 1;
4+
5+
animations.forEach(function(animation) {
6+
$('#controls').append('<button class="icon-switcher" data-icon="' + animation + '">' + animation + '</button>');
7+
});
8+
9+
$(document).on('click','.icon-switcher', function() {
10+
var animation = $(this).data('icon');
11+
console.log(animation);
12+
$('.icon-holder').removeClass().addClass('icon-holder ' + animation);
13+
});
14+
315
$('.icon-container').on('click', function (e) {
416
e.preventDefault();
517
e.stopPropagation();
@@ -10,7 +22,6 @@ $(document).ready(function () {
1022

1123
$holder.removeClass().addClass('icon-holder');
1224

13-
var animations = ['equals', 'pause', 'check', 'arrow-left', 'min', 'stop', 'cross', 'arrow-right', 'close', 'arrow-down', 'hamburger', 'search', 'play', 'arrow-up'];
1425

1526
$holder.addClass(animations[animationIndex]);
1627
animationIndex++;

‎stylesheets/style.css

+34
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,28 @@ html, body {
33
padding: 0;
44
width: 100%;
55
height: 100%;
6+
font-family:'verdana';
7+
background: #B6B6B6;
8+
}
9+
#controls {
10+
background: #BBDEFB;
11+
padding: 15px;
12+
}
13+
button {
14+
border:none;
15+
border-radius: 2px;
16+
padding: 8px 10px;
17+
margin: 2px;
18+
background: #1976D2;
19+
color: white;
20+
transition: all .35s ease;
21+
}
22+
button:hover {
23+
cursor: pointer;
24+
background:#03A9F4;
625
}
26+
27+
728
.icon-container {
829
top: .2em;
930
left: .2em;
@@ -243,6 +264,19 @@ html, body {
243264
.equals>.bar3 {
244265
margin: 1.3em 0 0 0;
245266
}
267+
/**
268+
* Min
269+
*/
270+
.min>.bar1 {
271+
272+
}
273+
.min>.bar2 {
274+
opacity: 0;
275+
}
276+
.min>.bar3 {
277+
opacity: 0;
278+
}
279+
246280
/**
247281
* Closing animation
248282
*/

0 commit comments

Comments
 (0)
Please sign in to comment.