Categories
App Reviews Tips

Fast .Gif files with ScreenToGif

Looking for a more effective way to create .Gif files for only help tips and other purposes, I stumble with this wonderful tool. It is lightweight and easy to use. Very intuitive. Only available for Windows, but the source code is available at: http://screentogif.codeplex.com and also maintained at https://github.com/NickeManarin/ScreenToGif This is a quick 10 minutes […]

Categories
Resources Tips Tutorials

Making your videos responsive to screen resolution with JQuery

This is a nice piece of code I found in Stack Overflow, but I love the solution posted by Darwin in October 12 2012 and I tweaked to fit my needs and here is my code: function adjustVideoRatioToParent(arr){ var element = (arr.e === undefined)? jQuery(‘iframe[src*=”youtube”]’) : jQuery(arr.e); //set element or elements var eParent = element.parent(); […]