Pulse animation
Create a circle and animate it forever! .cirlce { border: 1px solid #777; border-radius: 100%; height: 30px; width: 30px; background-color: #eee; animation: […]
Create a circle and animate it forever! .cirlce { border: 1px solid #777; border-radius: 100%; height: 30px; width: 30px; background-color: #eee; animation: […]
Get Youtube video id from a Youtube Url /** * @param String $url * @returns Youtube Id if found or false if […]
Just copy paste the following code in server.js file inside your node app directory. Then install dependencies using the command: npm install […]
Performs a binary search on the input array. Here is the algorithm /** * @param Array The array to search in * […]
We are going to write a plugin which shows youtube videos using videojs inside a fancybox popup. You will need jQuery Fancybox […]
Videojs with VideoJS Youtube Add CSS and JS resources <link href=”https://cdn.rawgit.com/videojs/video.js/v5.4.4/dist/video-js.css” rel=”stylesheet”> <script src=”https://cdn.rawgit.com/videojs/video.js/v5.4.4/dist/video.js”></script> <script src=”https://cdn.rawgit.com/eXon/videojs-youtube/v2.0.3/dist/Youtube.js”></script> Then add your video. <video id=”vide-01″ […]
Syntax Template Strings use back-ticks (“) rather than the single or double quotes we’re used to with regular strings. A template string […]
When you want to completely delete a directory and it has file with long names inside it, robocopy does a VERY good […]