New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

html-movement

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

html-movement

lib JQuery to move HTML elements by window scroll position

latest
Source
npmnpm
Version
0.0.2
Version published
Weekly downloads
3
200%
Maintainers
1
Weekly downloads
 
Created
Source

movement

Movement is a simple JQuery library to animate DOM by scroll position.

Usage

Movement depends on JQuery, so the JQuery Js file and the movement Js File should be add on HTML doc. Place the code below on the page load and change the properties as needed.

$.movement({
  properties: [
    // Aimate DOM 1
    {
      selector: '#man',
      start_time: 424,
      end_time: 757,
      name: 'left',
      type: 'ease-out-back',
      start_value: 20,
      end_value: 50,
      unit: '%'
  },
  // Animate DOM 2
  {
    selector: '#man',
    start_time: 424,
    end_time: 757,
    name: 'bottom',
    type: 'ease-out-back',  
    start_value: 110,
    end_value: 240,
    unit: 'px'
  }// , Animate DOM n 
  ]
});

The move can be used with a single DOM element using the JQuery syntax, as in the code below. You can animate as many css properties as you need.

$('#man').movement({
  properties: [
    { 
      name: 'left',
      type: 'ease-out-cubic',
      start_value: 20,
      end_value: 50,
      unit: '%'
    },
    {
      name: 'bottom',
      type: 'ease-out-back',
      start_value: 110,
      end_value: 240,
      unit: 'px'
    }
  ],
  start_time: 424,
  end_time: 757
});

Properties

NameDescription
nameName of css propertie to animate EX.: left, right, margin, etc
typeAnimation effect to smoth the animation
start_valueStart value of css propertie
end_valueEnd value of css propertie
start_timeValue of screen position where the animation have to start
end_timeValue of screen position where the animation should stop
selectorcss selector to determine the DOM element that will be animated
unitUnit of css propertie EX.: %, px, pc, etc

Animation smoth types

Movemnt suport the most commum smooth effects

  • linear
  • ease-in-quadratic
  • ease-out-quadratic
  • ease-in-out-quadratic
  • ease-in-cubic
  • ease-out-cubic
  • ease-in-out-cubic
  • ease-in-quartic
  • ease-out-quartic
  • ease-in-out-quartic
  • ease-in-quintic
  • ease-out-quintic
  • ease-in-out-quintic
  • ease-in-sinusoid
  • ease-out-sinusoid
  • ease-in-out-sinusoid
  • ease-in-exp
  • ease-out-exp
  • ease-in-out-exp
  • ease-in-circ
  • ease-out-circ
  • ease-in-out-circ
  • ease-in-elastic
  • ease-out-elastic
  • ease-in-out-elastic
  • ease-in-back
  • ease-out-back
  • ease-in-out-back
  • ease-in-bounce
  • ease-out-bounce
  • ease-in-out-bounce

Keywords

parallax

FAQs

Package last updated on 11 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts