Difference between revisions of "Plugins"
Jump to navigation
Jump to search
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
==Color Box, Used to | ==Color Box, Used to pop up images, HTML, Youtube Videos== | ||
[http://www.jacklmoore.com/colorbox/ ColorBox used for pop up images] | [http://www.jacklmoore.com/colorbox/ ColorBox used for pop up images] | ||
<pre> | <pre> | ||
Line 7: | Line 7: | ||
}); | }); | ||
</pre> | </pre> | ||
'''HTML''' | |||
<pre> | |||
$('#flower-items') | |||
.find('li:nth-child(2)') | |||
.colorbox({ | |||
'html': '<h1>Colorbox</h1><p>opn the color box</p>' | |||
}); | |||
</pre> | |||
'''Youtube''' | |||
<pre> | |||
$('#flower-items') | |||
.find('li:nth-child(2)') | |||
.colorbox({ | |||
'href': 'https://www.youtube.com/embed?v=Vn7vZJ0AIbE', | |||
'iframe': true, | |||
'width': 640, | |||
'height': 480 | |||
}); | |||
</pre> | |||
=List of Plugins Websites= | |||
== [https://www.npmjs.com/ NPMJS] == | |||
== [https://bower.io/ Bower] == | |||
== [http://mediaelementjs.com/ Media Element used to display Videos] == | |||
== [http://bqworks.com/ bqworks, Sliders, Acordins etc] == | |||
== [https://plugins.jquery.com/chosen/ Working with form boxes] == | |||
---- | ---- | ||
[[#top|Back To Top]]< — >[[JQuery|Category]]< — >[[Main_Page| Home]] | [[#top|Back To Top]]< — >[[JQuery|Category]]< — >[[Main_Page| Home]] |
Latest revision as of 18:51, 28 December 2016
Color Box, Used to pop up images, HTML, Youtube Videos
ColorBox used for pop up images
$(function() { "use strict"; $('#flower-items').find('a').colorbox({ rel: 'gallery' }); });
HTML
$('#flower-items') .find('li:nth-child(2)') .colorbox({ 'html': '<h1>Colorbox</h1><p>opn the color box</p>' });
Youtube
$('#flower-items') .find('li:nth-child(2)') .colorbox({ 'href': 'https://www.youtube.com/embed?v=Vn7vZJ0AIbE', 'iframe': true, 'width': 640, 'height': 480 });
List of Plugins Websites
NPMJS
Bower
Media Element used to display Videos
bqworks, Sliders, Acordins etc
Working with form boxes
Back To Top< — >Category< — > Home