Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 594 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 594 Bytes

vesponsive

Move content around at different screensizes with ease

##Installation bower install vesponsive --save

##Usage

Vesponsive.init({
  elems: [
      {
          selector: '#elem_to_move', // Element to be moved
          receiverSelector: '#elem_to_receive', // Move to this element
          position: 'before', // Place the moved element before the receiver
          breakpoint: 1240, // Move the element at this breakpoint
          additionalClass: 'my-additional-class' // Add additional classes to the moved element
      }
  ]
});