Skip to main content

Posts

Showing posts from January, 2021

Copy Text Using Javascript Function

How to Copy Text Using Javascript Function Here is The Video Documentation :-  Here is The JavaScript Code To Copy ... < script >      function   myFunction () {        var   copyText  =  document . getElementById ( "myInput" );        copyText . select ();        document . execCommand ( "copy" );        alert ( "Copied the text: "  +  copyText . value );     } </ script > This Code Will Copy The Whole Content Inside the Tag Where id is  myInput   . Click on the button to copy the text from the text field . Try to paste the text (e.g. ctrl+v) afterwards in a different window, to see the effect. Copy text   Try The Coding Here :-  https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_copy_clipboard Here is How the Full Code Will Look Like :-  <! DOCTYPE   html > < html > < body > < p > Click on the button to copy the text from the text field. Try to paste the text (e.g. ctrl+v) afterwards in a 

Extract File ID From Google Drive File Link Using Javascript

Firstly Add This Function  function getIdFromUrl ( url ) { return url.match( /[-\w]{25,}/ ); } Now , Your File ID will be    getIdFromUrl ( url )[ 0 ] Try It Here :- GDThumb GET ID ID will be Appear in Console and alerted too ... See Drive Thumbnail Downloader Based on This Technique :- https://toolade.surge.sh/drive_thumbnail_downloader/

FREE + UNLIMITED PDF FILE HOSTING

  1. USING GITHUB See Video Documentation :- 

Disable Download option in HTML5 Video

  See Video Documentation :-    Before - When video tag Download is Enabled . Here is a Simple Video Tag :-       < video   width = "320"   height = "240"   controls   loop >          < source   src = "https://www.w3schools.com/tags/movie.mp4"   type = "video/mp4" >         Your browser does not support the video tag.      </ video > -- Preview -- Your browser does not support the video tag. For Disabling the Download Option  After Disabling Download Add This Attribute  controlslist = "nodownload" Now the Full Code Will Look Like :-       < video   width = "320"   height = "240"   controls   loop   controlslist = "nodownload" >          < source   src = "https://www.w3schools.com/tags/movie.mp4"   type = "video/mp4" >         Your browser does not support the video tag.      </ video > -- Preview --

Placing Google Drive Files on Website or Blogger

1. Audio File 2. Video File 3. Image File  4. PDF File N/A Other :-  Get Google Drive Video/Pdf/Document Files Thumbnail or Poster 

Top Free Unlimited Audio Hosting

Top Free Unlimited Audio Hosting  1. Github visit->  See Video Documentation :-  See  All Demo :-  https://codexd-india.blogspot.com/2021/01/github-audio.html

Integrate Video.Js Video Player in Simple HTML5 Video Player

See Video Documentation :-    See All Video.JS Demo Here - > Download There are a few ways to get started using Video.js (currently v7.10.2), but you should select the one that best fits your particular use case. Video.js CDN Our friends at  Fastly  are nice enough to provide hosting for all the necessary files for Video.js on their content delivery network. Using these hosted files is probably the easiest way to get started using Video.js, you simply need to include the following links in your page. Demo <video> Tag ... Note :- Assign  <video id="my-video" class="video-js" controls preload="auto" width="640" height="364" poster="MY_VIDEO_POSTER.jpg" data-setup="{}" > <source src="https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/mp4/BigBuckBunny.mp4" type=&quo

Video-js Custom Skin Implement ( City , Fantasy , Forest , Sea )

Video-js Custom Skin Implement ( City , Fantasy , Forest , Sea ) Firstly See How to integrate Video.Js Video Player in Simple HTML5 Video Player View-> Customize Using Video.js straight out of the box is fine, but we think it's better if you make it your own. Plugins and skins make it possible to completely customize your player. Skinning The player skin is completely built from HTML and CSS, including when Flash and other players like YouTube are used. Skin changes can be as simple as centering the play button (you can just add the 'vjs-big-play-centered' class to your video tag), or as complex as creating entirely new layouts. We've built a codepen project where you can explore different changes. Home Page Themes The themes in the home page come from the  Videojs Themes library . To use them in your player, import the CSS, then add the relevant class to your video tag. For example, if you want to use the  City  theme, you could set up your HTML like so: <!-- I

Random Posts