Skip to main content

Posts

SP-FLAMINGO - SopPlayer Skin Integration

SP-FLAMINGO SopPlayer Skin Integration See Demo :- https://sopplayer.sh20raj.repl.co/flamingo/  Demo Website :-  https://sopplayer.github.io/SP-FLAMINGO/  or  https://sopplayer.sh20raj.repl.co/flamingo View on Repl.it :-  https://replit.com/@SH20RAJ/SopPlayer#flamingo Steps to Import :-  Steps :-        1. Use  class = "sopplayer" in Your <video> Tag .      2. And Add  data-setup = "{}" , attribute like this . HERE IS THE FULL VIDEO CODE      < video   id = "my-video"   poster = " https://i.ytimg.com/vi/YE7VzlLtp-4/maxresdefault.jpg "           class = "sopplayer"   controls   preload = "auto"   data-setup = "{}"   width = "500px" >        <!--Use class="sopplayer" and data-setup="{}" -->        < source   src = "https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/mp4/BigBuckBunny.mp4"

ToolAde-Share - A Free Open Source Share My Website - HTML Website Plugin

Toolade-share A Free Open Source Share My Website - HTML Website Plugin Open Website :- https://CDNSFree.github.io/toolade-share/ Just Copy Paste the Code Anywhere in your Website and Get A Free Open Source Share My Website - HTML Website Plugin <script src="https://cdn.jsdelivr.net/gh/CDNSFree/toolade-share/toolade-share.min.js"></script> A ToolAde Product - Home

Google Drive File Thumbnail Downloader Website + Script For Blogger or any website

 Google Drive File Thumbnail Downloader Website + Script For Blogger or any website Download :-  Download Direct :-  https://raw.githubusercontent.com/Toolade/GDThumb/main/singlepage.html Download GitHub :- https://github.com/Toolade/GDThumb/blob/main/singlepage.html Visit and Demo :-  Visit ToolAde :- https://toolade-home.blogspot.com/ See Demo GDThumb :- https://gdthumb.blogspot.com/

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 --

Random Posts