Skip to main content

Posts

Showing posts with the label Github

Custom HTML5 Video Player with Vanilla JavaScript - KWG Video Player

Custom HTML5 Video Player with Vanilla JavaScript KWG Video Player is a free custom HTML5 video player. It is written in Vanilla JavaScript and no library is required for it to run. The video player can be used in different web projects freely. Multiple instances of the video player can be used in a single page. and the appearance of the player can be customized. Upon creating a KWG Video Player, an Object is created in which one of the members is html5 <video> element and all Media events, properties and methods are available for it. For the whole functionality of KWG Video Player , see documentation source . Integration 1. Load CDNs <link rel= "stylesheet" href= "https://cdn.jsdelivr.net/gh/webgadgets/KwgVideoPlayer@master/kwg-video-player.css" /> <script src= "https://cdn.jsdelivr.net/gh/webgadgets/KwgVideoPlayer@master/kwg-video-player.js" ></script>

21 GitHub Repositories to Become a JavaScript Master 📚🚀

Learning and mastering JavaScript can be hard if you are not aware of the resources that are available to you. You don't need to apply for expensive courses and boot camps. In fact, a great start is GitHub. These free repositories will include everything you need. The list cover topics from algorithms and engineering principles to style guides, code snippets, cheatsheets, books, projects, interview questions, testing, etc. 1. javascript-algorithms ⭐ Github stars: 123k+ trekhleb / javascript-algorithms 📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings JavaScript based examples of many popular algorithms and data structures. 2. 30-seconds-of-code ⭐ Github stars: 87k+ 30-seconds / 30-seconds-of-code Short JavaScript

Create Your Apps Page ft. AppsPages - Free apps and games Upload or Landing Pages

Create Your Apps Page ft. AppsPages - Free apps and games Upload or Landing Pages AppsPages :-  https://appspages.herokuapp.com/ AppsPages is a Free website to Upload your app no approval required. Just create an account then create a page for your app where Users can go and download your app there. You will get so many features there Some are listed below and some will come soon... See Apps Page Demo - Subway Sufer Download :-  https://appspages.herokuapp.com/apk/7 AppsPages - Home Upload your Apps/Games For Free A top class mobile View - Share Buttons Dynamical functions on your Page A screenshots Slider | Emoji Reaction Bar Your Profile Page Dynamic Login Page Powerful Navbar Get a Developers Panel :-  https://appspages.herokuapp.com/panel/ Edit Your Apps Page From anywhere More Features are Coming Soon... Get Free Unlimited Image Hosting for Uploading on AppsPages - Here Get Free Unlimited File Hosting for Uploading on AppsPages -  Here

griffith : A React-based web video player - Integration - HTML5 Video Player #13

griffith : A React-based web video player - Integration - HTML5 Video Player #13 Github  | Demo  | Standalone Usage <div id="player"></div> <script crossorigin src="https://unpkg.com/griffith-standalone/dist/index.umd.min.js" ></script> <script> const target = document.getElementById('player') const sources = { hd: { play_url: 'https://zhstatic.zhihu.com/cfe/griffith/zhihu2018_hd.mp4', }, sd: { play_url: 'https://zhstatic.zhihu.com/cfe/griffith/zhihu2018_sd.mp4', }, } // create player instance const player = Griffith.createPlayer(target) // load video player.render({sources}) // dispose video //player.dispose();//This sunction will remove your player </script> See Codepen Demo :- See the Pen griffith : A React-based web video player - Integration by SH20RAJ ( @SH20RAJ ) on CodePen .

Upload More than 100 files on GitHub - Drag and drop of a folder with more than 100 files

 Upload More than 100 files on GitHub - Drag and drop of a folder with more than 100 files

Mastering Markdown - how to write a GitHub markdown

 //Source :-  https://guides.github.com/features/mastering-markdown/ Mastering Markdown  3 minute read   Download PDF version Markdown is a lightweight and easy-to-use syntax for styling all forms of writing on the GitHub platform. What you will learn: How the Markdown format makes styled collaborative editing easy How Markdown differs from traditional formatting approaches How to use Markdown to format text How to leverage GitHub’s automatic Markdown rendering How to apply GitHub’s unique Markdown extensions What is Markdown? Markdown  is a way to style text on the web. You control the display of the document; formatting words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly, Markdown is just regular text with a few non-alphabetic characters thrown in, like  #  or  * . You can use Markdown most places around GitHub: Gists Comments in Issues and Pull Requests Files with the  .md  or  .markdown  extension For more informat

Random Posts