Git Product home page Git Product logo

thecrisis / freezeframe.js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ctrl-freaks/freezeframe.js

0.0 2.0 0.0 12.94 MB

freezeframe.js is a script that pauses animated .gifs and enables them to animate on mouse hover / mouse click / touch event, or with trigger / release functions. It supports responsive images and works as a jQuery plugin.

Home Page: http://ctrl-freaks.github.io/freezeframe.js/

License: MIT License

JavaScript 98.45% CSS 1.55%

freezeframe.js's Introduction

freezeframe.js 3.0.8

freezeframe.js is a script that pauses animated .gifs and enables them to animate on mouse hover / mouse click / touch event, or with trigger / release functions. It supports responsive images and works as a jQuery plugin.

  1. Examples
  2. Files & Dependencies
  3. Basic Usage: jQuery Plugin
  4. Basic Usage: Vanilla JS
  5. Advanced Usage
  6. Options Reference
  7. Function Reference
  8. License
  9. Thanks

Examples

http://ctrl-freaks.github.io/freezeframe.js/

Files & Dependencies

  1. Include the js and css from /build/
  <link rel="stylesheet" href="freezeframe_styles.min.css">
  <script src="freezeframe.min.js"></script>
  1. If you do not use a packaged version the following dependencies are required. These files can be found in /src/js/vendor/:

Basic Usage: jQuery Plugin

  1. trigger the image you want by selector and run the freezeframe() function.
  $('.my_class').freezeframe();

Basic Usage: Vanilla JS

  1. Add freezeframe as a class name on the .gifs you want processed.
  <img class="freezeframe" src="image.gif" /> 

Add freezeframe-responsive as an additional class name to make the .gif responsive.

  <img class="freezeframe freezeframe-responsive" src="image.gif" /> 
  1. ✨Freeze those frames ✨
  $(function() {
    ff = new freezeframe().freeze();
  })

Advanced Usage

freezeframe.js exposes public methods to allow for more custom integration. You have the option of manually controlling when freezeframe triggers images, adds support elements, and attaches event handlers. You can also manually trigger and release animation on one image or a group of images. These methods are described in detail in the Function Reference.

Example: trigger logo .gif and manually trigger / release animation:

logo = new freezeframe('#logo'); // setup freezeframe instance with custom selector

logo.trigger(); // trigger images by selector
logo.setup();   // setup support elements
logo.trigger(); // trigger animation
logo.release(); // release animation

Options Reference

Options can be passed to a freezeframe instance on creation in the form of an object or a string. Strings will be interpreted as the selector option.

// Options passed to jQuery plugin
$('.my_class').freezeframe({'animation_play_duration': 2500})

// String as selector option
var ff = new freezeframe('.my_class');

// Object as options
var ff = new freezeframe({
  'selector': '.my_class',
  'animation_play_duration': 3000,
  'non_touch_device_trigger_event': 'hover'
})
  • selector

    type: string
    default: ".freezeframe"

    The selector used to search for .gifs when the trigger() function is run.

  • animation_play_duration

    type: integer
    default: 5000
    options: Infinity

    The number of milliseconds a .gif will animate for when triggered by click / touch event.
    Use Infinity to make the .gif play forever.

  • non_touch_device_trigger_event

    type: string
    default: "hover"
    options: "hover", "click"

    The trigger event to start animation for non-touch devices.

Function Reference

  • freezeframe( options )

    Create a new freezeframe object instance.
    Can be passed options. Strings will be interpreted as the selector option.

    // Default options
    var ff = new freezeframe();
    
    // String as selector option
    var ff = new freezeframe('.my_class');
    
    // Object as options
    var ff = new freezeframe({
    'selector': '.my_class',
    'animation_play_duration': 3000,
    'non_touch_device_trigger_event': 'hover'
    })
  • trigger( selector )

    trigger images to be paused by freezeframe. If run without selector argument, selector in freezeframe options will be used. Can be run multiple times with different selector to group many images, unrelated by selector, in one freezeframe instance.

    ff.trigger();               // use selector in freezeframe options
    ff.trigger('.my_class');    // use custom selector
  • setup()

    Creates and inserts support elements. Can be filtered by selector.

    ff.setup();                 // all images in freezeframe instance
    ff.setup('.my_class');      // filter images by selector

    HTML image before:

    <img class="freezeframe" src="my_image.gif" />
    

    ...and after:

    <div class="ff-container">
    <canvas class="ff-canvas ff-canvas-ready" width="400" height="250"></canvas>
    <img class="freezeframe ff-setup ff-image ff-image-ready" src="my_image.gif">
    </div>
    
  • attach( selector )

    Attaches hover / click / touch events based on freezeframe options. Can be filtered by selector.

    ff.attach();                // all images in freezeframe instance
    ff.attach('.my_class');     // filter images by selector
  • trigger( selector )

    Triggers (starts) animation, or restarts animation from the first frame if the .gif is already animating. Can be filtered by selector.

    ff.trigger();               // all images in freezeframe instance
    ff.trigger('.my_class');    // filter images by selector
  • release( selector )

    Releases (stops) animation. Can be filtered by selector.

    ff.release()                // all images in freezeframe instance
    ff.release('.my_class');    // filter images by selector

License

freezeframe.js is released under the terms of the MIT License.

Thanks

freezeframe.js's People

Contributors

chrisantonellis avatar nickforddev avatar dohnutt avatar shedali avatar kgaut avatar vsaarinen avatar codemilli avatar

Watchers

James Cloos avatar Chrisis 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.