Skip to content

Instantly share code, notes, and snippets.

View admench's full-sized avatar
🔬
Testing

Adam Menczykowski admench

🔬
Testing
View GitHub Profile
@admench
admench / layout.css
Last active August 29, 2015 14:23
3 column layout, using output from Bourbon Neat.
html {
box-sizing: border-box; }
.grid-layout::after {
clear: both;
content: "";
display: table; }
.grid-item {
margin-bottom: 2em;
@admench
admench / Flexslider.initiate.js
Created June 16, 2015 13:54
Flexslider animate text over the top.
$(window).load(function() {
$('.flexslider').flexslider({
start: function(slider) {
$(slider).find(".flex-active-slide .slide-copy").slideToggle(400);
},
after: function(slider) {
$(slider).find(".flex-active-slide .slide-copy").slideToggle(400);
},
end: function(slider) {
$(slider).find(".slide-copy").css('display', 'none');