Skip to content

SVANNER/jquery-plugins

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jQuery customsearch

Let's you use Google's custom search on you website. Using AJAX
it searches as you type using the latest (non-deprecated) API.
Gives complete control of the search result and form layout.

    $(document).ready(function(){

      jQuery.customsearch({
        google_key: 'YOUR-KEY',
        google_cx: 'YOUR-CX',
        query: "#query",
        message: "#message",
        results: "#results",
        more: "#more",
      });

Check the options for more ways to customize.


jQuery fullslide

Fullslide is a jquery plugin for fullscreen slide shows.

It uses a double buffering technique instead of just throwing all the
images at once at the browser. This helps with the page load speed.
It provides callbacks for the slide transitions and let's you easily
create a blank overlay to protect the images from right-click downloads.

  <script type="text/javascript">
    var slides = [
    {
      title: 'Lonely in Berlin',
      category: 'Street',
      src: 'slides/bridge.jpg'
    },
    {
      title: 'Little Miss Swimsuit',
      category: 'Street',
      src: 'slides/pinkatbeach.jpg'
    }
    ];

    jQuery.fullslide({
      slides: slides,
      fade_duration: 750,
      show_duration: 6000,
      blank_overlay: true,
      on_slide_callback: function(from, to) {
      }
      on_select_callback: function(from, to) {
      }
    });

    jQuery.fullslide.pause();
    jQuery.fullslide.unpause();
    jQuery.fullslide.show(0);


jQuery flashdetect

Want to know what version of flash is installed? Or if flash is installed at all? Use...

 if(jQuery.hasFlash()) { ... }
 jQuery.hasFlash.playerVersion()

About

some jquery plugins

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published