Designy code



PLUGINS::

https://soliloquywp.com/beautiful-plugins/
these help beautify a site –


https://www.sequencejs.com/documentation/
BUILDER TOOL -you can make anykind of slider etc.

http://demo.sequencejs.com/modern-slide-in/


Css animation stuff

http://animista.net

list of css nimation galleries
https://freefrontend.com/css-gallery/

Introducing Pro Gallery

https://codepen.io/alchatti/pen/NOdzLO – no code!

Documentation


http://www.thepetedesign.com/demos/shuffle-images_demo.html
https://nitinhayaran.github.io/Justified.js/demo/index.html
http://www.thepetedesign.com/demos/shuffle-images_demo.html

SIDEWAYS – jQuery fullscreen image gallery

Image Grid with KenBurns and Description on Hover

Vertical Split Image Slideshow

Vertical Column Image Expanding on Hover Animation

35+ Mesmerising CSS Gallery Examples Crafted To Entice More Users 2021

http://preview.codecanyon.net/item/hero-slider-wordpress-slider-plugin/full_screen_preview/13067813

this is the answer to the ns homepage issue – we use some movement with staic iamge –

+++++++++++++

https://lemehovskiy.github.io/parallax_background/demo/

https://simpleparallax.com/

https://dixonandmoe.com/rellax/
– many cool toys on there

+++++++++++++

Home


stories!

+++++++++++++++++++

Advanced WordPress Backgrounds Plugin

+++++++++++++++++++++++

15 Really Cool WordPress Parallax Plugins

=========+++++++++++++++++++++++=========

8 Best jQuery Parallax Plugins to Add Stunning Parallax Effect [Best of the Web]

https://fuhton.com/fallings/

http://scrollmagic.io/

https://www.jqueryscript.net/blog/Top-50-Best-Parallax-Scroll-Effect-jQuery-Plugins.html

https://www.jqueryscript.net/animation/Parallax-Elements-jQuery-PointParallax.html

https://www.jqueryscript.net/demo/Fade-Parallax-Landing-Elements/

https://www.jqueryscript.net/demo/background-parallax-scroll-effect/

https://www.jqueryscript.net/demo/Parallax-Scroll-jQuery-CSS3-UIparalax/

8 Best jQuery Parallax Plugins to Add Stunning Parallax Effect [Best of the Web]

https://simpleparallax.com/

http://markdalgleish.com/projects/stellar.js/demos/


https://simpleparallax.com/

 

 

simpleParallax is a very simple and lightweight Vanilla JS plugin that improve your website with parallax animations on your images.

Where it may be laborious to get results through other plugins, simpleParallax stands out for its ease and its visual rendering. The parallax effect is directly applied on image tags, there is no need to use background images.

Any image will fit. Try it out!

Installation

Install with Package Managers

//npm
npm install simple-parallax-js
//yarn
yarn add simple-parallax-js

simpleParallax can be import this way

import simpleParallax from 'simple-parallax-js';
<script src="https://cdn.jsdelivr.net/npm/simple-parallax-js@4.0.0/dist/simpleParallax.min.js"></script>

Initialization

Giving the following HTML:

<img class="thumbnail" src="image.jpg" alt="image">

Simply add the following JS code:

var image = document.getElementsByClassName('thumbnail');
new simpleParallax(image);

Settings

name type default hint
orientation string up top – right – bottom – left
scale int 1.2 need to be above 1.0 – no effect if overflow setting is set to true
overflow boolean false
delay int 0 the delay is in second
transition string ‘cubic-bezier(0,0,0,1)’ transition can be any CSS transition
breakpoint int 768 the breakpoint is in pixel
  • orientation – string

    Choose the direction of the parallax effect.

  • scale – int

    The higher the scale setting is set, the more visible the parallax effect will be. In return, the image will lose in quality.

  • overflow – boolean

    By default, the image is scaled to apply a parallax effect without any overflow on the original image container. If overflow is set to true, the image will be translated out of its natural flow.

  • delay – int

    When a delay is set, the translation of the image will continue to to perfom when the user stop scrolling. That gives a very nice effect.

  • transition – string

    The transition works closely with the delay setting. The transition will add CSS efect to the delay setting.

  • breakpoint – int

    Choose the minimum breakpoint (in pixel) from where simpleParallax will be initialized

Examples

  • Basic config

    simpleParallax image
    simpleParallax image
    var image = document.getElementsByClassName('thumbnail');
    new simpleParallax(image);
  • with a different direction

    simpleParallax image
    simpleParallax image
    var image = document.getElementsByClassName('thumbnail');
    new simpleParallax(image, {
        orientation: 'left'
    });
  • with a higher scale

    simpleParallax image
    simpleParallax image
    var image = document.getElementsByClassName('thumbnail');
    new simpleParallax(image, {
        scale: 1.5
    });
  • with overflow

    simpleParallax image
    simpleParallax image
    var image = document.getElementsByClassName('thumbnail');
    new simpleParallax(image, {
        overflow: true
    });
  • with delay and transition

    simpleParallax image
    simpleParallax image
    var image = document.getElementsByClassName('thumbnail');
    new simpleParallax(image, {
        delay: .6,
        transition: 'cubic-bezier(0,0,0,1)'
    });






[display-posts category=”design, design-overview, design-morecheats” category_display=”true” category_display=”post_tag” category_display=”taxonomy_name” image_size=”medium” wrapper=”div” wrapper_class=”display-posts-listing grid” meta_key=”_thumbnail_id”]



Scroll to Top