An open API service indexing awesome lists of open source software.

https://github.com/naturalintelligence/floating-round-button

Floating Round Button
https://github.com/naturalintelligence/floating-round-button

Last synced: 4 months ago
JSON representation

Floating Round Button

Awesome Lists containing this project

README

          

# floating-round-button
Floating Round Button

check [example](https://naturalintelligence.github.io/floating-round-button/)
### Sample
####HTML
```HTML


```

####Javascript
```javascript
var config = {
main: {
"bgcolor":"#e74c3c",
"icon":"",
onClick: function(){
console.log("applied");
}
},
links:[
{
"url":"doceditor.html",
"bgcolor":"#03A9F4",
"color":"#fffff",
"icon":"",
"target":"_blank",
"title" : "New Document",
onClick: function(){
navigateToLink("doceditor.html");
}
},{
"url":"http://www.example.com",
"bgcolor":"black",
"color":"white",
"icon":"",
"title" : "Settings"
},{
"url":"http://www.example.com",
"bgcolor":"#3B5998",
"color":"white",
"icon":"",
"target":"_blank",
"title" : "Open"
}
]
}

$(document).ready(function(){
rbt_display($(".rbt_wrapper"),config,(menu) => {
menu.slideDown( "slow" );
});
});
```

Implement `.sub_rbt` for CSS effects on menu item like: hover,animation etc.