Created
October 26, 2016 21:26
-
-
Save gentilmente/eb2c04ae30c77bca23c9e5d8c810e51c to your computer and use it in GitHub Desktop.
jQuery effect and pure.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
$('.material-card > .mc-btn-action').click(function () { | |
var card = $(this).parent('.material-card'); | |
var icon = $(this).children('i'); | |
icon.addClass('fa-spin-fast'); | |
if (card.hasClass('mc-active')) { | |
card.removeClass('mc-active'); | |
window.setTimeout(function() { | |
icon | |
.removeClass('fa-arrow-left') | |
.removeClass('fa-spin-fast') | |
.addClass('fa-bars'); | |
}, 800); | |
} else { | |
card.addClass('mc-active'); | |
window.setTimeout(function() { | |
icon | |
.removeClass('fa-bars') | |
.removeClass('fa-spin-fast') | |
.addClass('fa-arrow-left'); | |
}, 800); | |
} | |
}); | |
}); | |
var team = /[1-9]/i; | |
var teams = document.querySelector(".teams"); | |
teams.addEventListener("click", function(e) | |
{ | |
team = RegExp(e.target.id, "i"); | |
$p( '.row' ).render( data, compiled ); | |
}); | |
var data = (function () { | |
var json = null; | |
$.ajax({ | |
'async': false, | |
'global': false, | |
'url': "./data.json", | |
'dataType': "json", | |
'success': function (data) { | |
json = data; | |
} | |
}); | |
return json; | |
})(); | |
var directive = { | |
'.col-md-4':{ | |
'user<-':{ | |
'span': 'user.name' , | |
'strong': 'user.title', | |
'.mc-description' : 'user.bio', | |
'img@src': "img/" + "#{user.id}" + ".jpg" | |
}, | |
filter:function(a){ | |
return ( team ).test( a.item.team ); | |
} | |
} | |
}; | |
var compiled = $p( '.row' ).compile( directive ); | |
$p( '.row' ).render( data, compiled ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment