Code Monkey home page Code Monkey logo

okie-helpers's Introduction

Okie-helpers

A collection of useful utility functions used by the okie suite of front-end plugins.

cleanSpaces

okieHelpers.cleanSpaces(str)

given a string, make sure that each instance of white-space is only one space.

addClass

okieHelpers.addClass(element, 'some class names')

Add a classes to an element. first argument is the target element, second argument is that class list (space-separated).

removeClass

okieHelpers.removeClass(element, 'class-name')

Removes a class from an element

getOuterSize

okieHelpers.getOuterSize(target)

Returns the size of an element as an object with width and height properties

getTransDuration

okieHelpers.getTransDuration(element)

Returns an elements computed transitionDuration style property in miliseconds. Useful for making JavaScript animations match the CSS transitionDuration.

getViewHeight

okieHelpers.getViewHeight();

returns the viewPort height. Uses window.innerHeight when available or falls back to document.documentElement.clientHeight

maxHeightMultiplier

okieHelpers.maxHeightMultiplier(element)

Get an elements max-height style property. If max-height is set as a percentage okieHelpers.maxHeightMultiplier will convert it to a pixel value.

isVisible

okieHelpers.isVisible(element)

Determines if an element is visible by checking offsetWidth and offsetHeight;

stopEvent

okieHelpers.stopEvent(event)

Shortcut for:

if (event.preventDefault) event.preventDefault();
event.stopPropagation();
event.stopImmediatePropagation();

okie-helpers's People

Contributors

bcartmell avatar

Watchers

 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.