https://github.com/hiejulia/my-first-jquery-plugin
My first JQuery plugin
https://github.com/hiejulia/my-first-jquery-plugin
Last synced: 6 months ago
JSON representation
My first JQuery plugin
- Host: GitHub
- URL: https://github.com/hiejulia/my-first-jquery-plugin
- Owner: hiejulia
- Created: 2017-02-15T07:21:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-13T00:17:34.000Z (over 8 years ago)
- Last Synced: 2024-12-13T09:21:42.927Z (10 months ago)
- Language: CSS
- Size: 753 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# my-first-jquery-plugin
My first JQuery plugin# What it does?
+ Navigation bar for mobile first design
+ Play a bit with color and animation for your navigation# How to install
+ Go to: https://www.npmjs.com/package/my-first-jquery-plugin
+ Install node to your local machine
+ Install from npm package# How to use it?
+ Download JQuery
+ Download this Jquery plugin
+ Basic command :
+ This is the main function of plugin
$('your nav element').pluginMenu();
+ You can change the color of DOM element
$("your element").pluginColor({
color: "your-color"
});
+ Animation for your navigation
$("your element").hover(function () {
$(this).pluginAnimation({marginLeft:"30px",marginTop:0});
}, function () {
$(this).pluginAnimation({marginLeft:"10px",marginTop:0});
});//could be your animation options# Some demos
![]()