Guest User

Untitled

a guest
May 20th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. // mixitup forum post
  2. mixitup(container, {
  3. selectors: {
  4. control: '[data-mixitup-control]'
  5. }
  6. }
  7.  
  8. <button type="button" data-mixitup-control data-filter=".red">Red</button>
  9. <button type="button" data-mixitup-control data-toggle=".blue">Blue</button>
  10. <button type="button" data-mixitup-control data-sort="default:desc">Sort Desc</button>
  11.  
  12. // personal code example
  13.  
  14. // Mix It Up
  15. if($('.blog--posts').length) {
  16. var mixer = mixitup('.blog--posts', {
  17. animation: {
  18. duration: 300
  19. },
  20. selectors: {
  21. control: '[data-mixitup-control]'
  22. }
  23. });
  24. }
  25.  
  26. <button data-mixitup-control type="button" data-filter="all">All</button>
Add Comment
Please, Sign In to add comment