Avatar Post-Production: How Did They Use After Effects
Great insight into the post-production process of the Avatar movie and how Adobe After Effects was used.
John Adams visual FX breakdown
Great video showing the breakdown of visual effects used in the movie “John Adams”.
Equal CSS columns with jQuery
Here’s a quick solution for equal CSS columns using jQuery.
$(function() {
jQuery.fn.makeEqualHeight = function () {
// Calculate the height of the tallest column
var maxHeight = 0;
this.each(function() {
maxHeight = ($(this).height() > maxHeight)? $(this).height() : maxHeight;
});
return this.height(maxHeight);
}
// Call the function that will make all columns of the class "column" equal
$(".column").makeEqualHeight();
});
jQuery.fn.makeEqualHeight = function () {
// Calculate the height of the tallest column
var maxHeight = 0;
this.each(function() {
maxHeight = ($(this).height() > maxHeight)? $(this).height() : maxHeight;
});
return this.height(maxHeight);
}
// Call the function that will make all columns of the class "column" equal
$(".column").makeEqualHeight();
});
One man army – Attila the Hun trailer & visual effects breakdowns
How one person created over 250 visual effects shots for the BBC drama ‘Attila the Hun’. As well as directing the hour long film, Gareth Edwards also created all the visual effects ‘from his bedroom’ using just off the shelf software.













