Posts

SeekBar JavaScript (I)

Image
✪ Luminous Organisation JavaScript SeekBar (I) Contents Chapter I What is SeekBar Calling a default SeekBar Setting minimum, maximum and value Getting progress Chapter II Setting progress programmatically Important lifecycle event: On Touch End Importance of SeekBar Wait a minute 1. What is SeekBar ❝A SeekBar is an extension of ProgressBar that adds a draggable thumb. The user can touch the thumb and drag left or right to set the current progress level❞ — Android Developers. You all know about ProgressBar which displays the current progress of any event. Usually ProgressBar displays progress at a percentage value, such as — downloading (87%) . Like ProgressBar, SeekBar has its current value, minimum and maximum range. We can say ProgressBar an output element, whereas SeekBar is an input element, where user can alter the value within a preset range. Here is an example of SeekBar. Its range is between 80 to 100 and value is 85 by default. Get Progress S...

Halloween Countdown

✪ Luminous Organisation Halloween Countdown Day Hour Minute Second         Scary Halloween

Outrageous October

Image
✪ Luminous Organisation Outrageous October 1—31 October, 2021 ✪ Luminous Organisation Subscribe to receive newsletters regularly How to subscribe: Install our product JavaScript Block Editor in android and then sign in with your Google Account, use this app regularly. We'll send newsletters to your email address. You can also check these out ↓ All activities (with newsletters) of Sparkling September, 2021 3rd September YouTube: Programmatically Change HTML Title in JavaScript Block Editor | HTML, JS | JavaScript Block Editor 7th September YouTube: How To Open Another Website in JavaScript Block Editor | Luminous Organisation 15th September Application: Version 4.0 of JavaScript Block Editor "Download latest version from Website." Telegram: Version 4.0 of JavaScript Block Editor "Download latest version from Telegram." YouTube: Coin Tossing In JavaScript Block Editor 27th September YouTube: ☞Image Editing in JavaScript | Eleme...

Image Editing / Element Filtering | JavaScript Block Editor

Image
Image Editing / Element Filtering | JavaScript Block Editor You can add either an ImageView or any other elements such as Button, TextView etc. We have added a Button to edit. 🏞️ 🏞️ The first one is real and the second one is edited by the filtering property of JavaScript. Let's know about it. Prerequisites Download   JavaScript Block Editor  App  HTML Add either an ImageView or any other element such as Button, TextView etc . Hence we can say that this property is not only for an ImageView. Make sure you provide a unique id for that element. Optionally add CSS to that element. For instance you can enlarge the size of that element for a better vision. JS Click ImageView > Edit Image . Provide element id properly. Edit the element in your own way by enhancing filtering effects: Blur, Brightness, Contrast, Grayscale, Hue-rotate, Invert, Opacity, Saturate, Sepia. Understanding subspecs (!important) Filter effects Effect Default Value Values...

Sparkling September, 2021

Image
✪ Luminous Organisation Sparkling September 1—30 September, 2021 ✪ Luminous Organisation Subscribe to receive newsletters regularly How to subscribe: Install our product JavaScript Block Editor in android and then sign in with your Google Account, use this app regularly. We'll send newsletters to your email address. You can also check these out ↓ All activities (with newsletters) of Appearance August, 2021 1 August: Greetings, Appearance August, facebook. 2 August: Toast In JavaScript, website. 3 August: Toast In JavaScript by TestThis Editor v1.0 beta 1 or higher | Luminous Organisation, YouTube. Introducing TestThis Editor v1.0 beta 1, facebook. 5 August: TestThis Editor v1.0 beta 2, website. 8 August: Creating Date and Time Website in JavaScript Block Editor App | HTML & JS | Create Your Own Website, YouTube. 9 August: Introducing JavaScript Block Editor version 1.0, facebook. JavaScript Block Editor version 1.0 download, telegram. 10 Augus...

Age Calculator In JavaScript

Calculate Set your birthday above and click Calculate button. This calculator is in beta. It might provide you wrong information. If you can catch a bug of it, comment please. We'll try to fix them as soon as possible. This message will disappear as the situation changes. Source Code of the project: HTML <input type="date" id="dp"> <button onclick="df();">Calculate</button> JavaScript function df() { var x = document.getElementById("dp").value; var b_y = x.slice(0, 4); var b_m = x.slice(5, 7); var b_d = x.slice(8, 10); var y = (new Date()).getFullYear(); var m = 1 + new Date().getMonth(); var d = (new Date()).getDate(); var dy = y - b_y; var dm = m - b_m; var dd = d - b_d; if (b_m>m) { dy--; } if (b_d>d) { dm--; } if (b_m==m && b_d>d) { dy--;} if (dm<0) { dm = 12 + dm; } var k; //Created by Luminous Organisation //Created with JavaScript Block Editor if (b_m == 2) { if (b_y%100 == 0 && (b_y.sl...

YouTube Embedding In HTML

Image
YouTube Embedding In HTML YouTube Embedding Tutorial Using JavaScript Block Editor Android Application YouTube is one of the most useful tool in the world of technology. If you publish a website, it will be incomplete if you don't link it with your own YouTube channel. Imagine, if anyone leaves your website for watching your video(s) and does not come back to your website, or forgets your context — then what's the opportunity of linking "a href" for YouTube? The solution is — YouTube Embedding . You can embed your video(s) and/or playlist(s) in your website! Users/readers do not have to leave your website. It is a tool provided by Google ; and you, now, can use this tool in JavaScript Block Editor app, too. We also used "YouTube Embedding" in this website! Let's learn how to embed!! Prerequisites YouTube Channel YouTube Public Video(s) or Playlist(s) Allow Embedding from YT Studio Copied Link of Video/Playlist JavaScript Block Editor App St...