Coder Social home page Coder Social logo

fs-slideshow's Introduction

FS Slideshow

A minimal full screen slideshow jquery plugin intended for use in other projects as a boilerplate or just as is.

characteristics:

  • easy to adjust
  • supports only newer browsers
  • css3 transitions
  • only one slideshow per page
  • manually trigger sliding
  • play / pause

TODO

  • add pause/play to default initialized buttons
  • move more variables to options
  • add loading icon
  • firefox, ie10

requirements

  • jquery

usage

  • require jquery & fs-slideshow script
  • add markup for the content:
    <ol class="fs-slideshow">
        <li>
            <img class="fs-bg" alt="Cairn" src="img/Cairn_by_Sylvain_Naudin.jpg">
            This is the first slide.
        </li>
        <li>
            <img class="fs-bg" alt="Green Plant" src="img/Green_Plant_by_Simon_Schlegl.jpg">
            This is the second slide.
        </li>
        <li>
            <img class="fs-bg" alt="H" src="img/H_by_Manuel_Sagredo.jpg">
            This is the third slide.
        </li>
    </ol>
  • add markup for the buttons (optional):
    <div class="fs-prev">
        <a href="#">BACK</a>
    </div>
    <div class="fs-next">
        <a href="#">NEXT</a>
    </div>
  • initialize plugin
    // on document load
    $(function() {
        $('.fs-slideshow').fsSlideshow();
    });

arguments

  1. options (Object): Initialize slideshow with given options
    $('.fs-slideshow').fsSlideshow({
        shuffle: true,
        autoPlay: true
    });
  1. slideIndex (Number): Show slide with index
    // show 3rd slide
    $('.fs-slideshow').fsSlideshow(2);
  1. next (String): Show next slide
    $('.fs-slideshow').fsSlideshow('next');
  1. prev (String): Show previous slide
    $('.fs-slideshow').fsSlideshow('prev');
  1. play [, timeout] (String, Number): Show next slide with an interval of timeout (default 5000ms)
    $('.fs-slideshow').fsSlideshow('play');
    $('.fs-slideshow').fsSlideshow('play', 8000);
  1. pause (String): Pause playback
    $('.fs-slideshow').fsSlideshow('pause');

fs-slideshow's People

Contributors

benvds avatar

Watchers

James Cloos avatar Mahabub Hasan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.