- Home
- Uncategorized
- Creating Screen Captures With Certain Aspect Ratio · Useful Console Script
Creating Screen Captures With Certain Aspect Ratio · Useful Console Script
If you’re showcasing your work on a website, you very well might need to overlay screencast videos over devices. We recommend using chrome and firefox and using the following script to get the aspect ratio just right for the recording:
window.setInterval(function() { var winDims = {w:$(window).width(), h:$(window).height()}; console.log(winDims.w + "x" + winDims.h + " ... " + winDims.w/winDims.h); }, 777);