Drag the background!

Search source code (of Worlds)

Search JavaScript code of all Worlds for: mouseDrag


Hunting Season
1417 runs ♦ 1 like
By Niall Kelly  
Created: 3 Nov 2022
Modified: 17 Sep 2023
The aim is simple, shoot as many targets as you can in 60 seconds. Watch out for the hawk's, the...
ABHandler.touchDrag = mouseDrag;
ABHandler.initMouseDrag = mouseClick; // Override default desktop controls
ABHandler.mouseDrag = mouseDrag;
function mouseDrag(x, y){ // Disable drag
Final Pool
1226 runs ♦ 2 likes
By Ian Gilligan  
Created: 1 Mar 2019
Modified: 17 Sep 2023
Pool Predictor for CA326
ABHandler.initMouseDrag = click;
ABHandler.mouseDrag = dummy;
Character recogn...
2394 runs ♦ 0 likes
By "Coding Train" p...  
Created: 5 Jul 2019
Modified: 17 Sep 2023
Neural network to do character recognition from image database and from handwriting in real-time.
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
Space Hero
127 runs ♦ 0 likes
By Enhanced  
Created: 13 Jun 2018
Modified: 17 Sep 2023
Drag the Earth the collect the suns. Don't get hit by the asteriods ! Enhanced version of "Space...
threehandler.initMouseDrag = initDrag;
threehandler.mouseDrag = drag
Sampler
162 runs ♦ 1 like
By Enhanced  
Created: 19 Jul 2018
Modified: 17 Sep 2023
Upload sounds, play them, automate them. Saving data works.
threehandler.mouseDrag = function ( x, y ) { };
threehandler.initMouseDrag = initDrag;
Zombie Death Baby
859 runs ♦ 1 like
By Starter user  
Created: 11 Jun 2018
Modified: 17 Sep 2023
How to make a fun touch game for mobile. Touch drag and tap objects. Mouse drag and click object...
ABHandler.initMouseDrag = initDrag;
ABHandler.mouseDrag = drag
Zombie Death Bab...
2 runs ♦ 0 likes
By John Lasis  
Created: 5 Dec 2022
Modified: 17 Sep 2023
Clone of "Zombie Death Baby" by Starter user
ABHandler.initMouseDrag = initDrag;
ABHandler.mouseDrag = drag
*FAILED - CNN
24 runs ♦ 0 likes
By Laura Campbell  
Created: 30 Nov 2022
Modified: 17 Sep 2023
Clone of "cnn" by Laura Campbell
let mousedrag =false; // are we in the middle of a mouse drag drawing?
mouseX < t && mouseY < t && pmouseX < t && pmouseY < t && (mousedrag = !0,
mousedrag && (mousedrag = !1,
character recogn...
19 runs ♦ 0 likes
By Chandrabhanu Sin...  
Created: 29 Nov 2022
Modified: 17 Sep 2023
Clone of "Character recognition neural network" by "Coding Train" project
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
Character recogn...
13 runs ♦ 0 likes
By Zoro  
Created: 13 Nov 2024
Modified: 2 Sep 2025
Clone of "Character recognition neural network" by "Coding Train" project
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
Javascript Zombi...
4 runs ♦ 0 likes
By Jorge Blanco  
Created: 29 Oct 2019
Modified: 17 Sep 2023
Clone of "Javascript Zombie Death Baby" by Javascript
ABHandler.initMouseDrag = initDrag;
ABHandler.mouseDrag = drag
v0.43 Pool Predi...
278 runs ♦ 1 like
By Ian Gilligan  
Created: 5 Feb 2019
Modified: 17 Sep 2023
Clone of "v0.4 Pool Predictor Prototype" by Ian Gilligan
//ABHandler.initMouseDrag = initDrag;
//ABHandler.mouseDrag = drag
BarryMcNamara_19...
37 runs ♦ 0 likes
By barry  
Created: 21 Dec 2019
Modified: 17 Sep 2023
Clone of "Character recognition neural network" by "Coding Train" project
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
DOODLE IMPROVER ...
14 runs ♦ 0 likes
By Mark  
Created: 3 Dec 2021
Modified: 17 Sep 2023
Clone of "Character recognition neural network (clone by Mark)" by Mark
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
Character recogn...
1 run ♦ 0 likes
By Zoro  
Created: 13 Nov 2024
Modified: 2 Sep 2025
Clone of "Character recognition neural network (clone by test2)" by test2
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
AI_in_use_charac...
86 runs ♦ 0 likes
By Rajesh Dande  
Created: 12 Dec 2020
Modified: 17 Sep 2023
Doodle character recognition Assignment2
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
ConvNet Port (cl...
286 runs ♦ 0 likes
By Jack O'Brien  
Created: 5 Dec 2020
Modified: 17 Sep 2023
Clone of "Character recognition neural network" by "Coding Train" project
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
if(mousedrag===false)return;
Character recogn...
4 runs ♦ 0 likes
By Daniel Peres  
Created: 3 Dec 2019
Modified: 17 Sep 2023
Character recognition - Both approaches working (useBestSlowApproach false)
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if (mousedrag) {
mousedrag = false;
Alphabet Recogni...
16 runs ♦ 0 likes
By Abdelshafa Abdala  
Created: 27 Nov 2022
Modified: 17 Sep 2023
Clone of "Alphabet Recognition" by Sharmistha
train_index=0,testrun=1,test_index=0,total_tests=0,total_correct=0,doodle_exists=!1,demo_exists=!1,mousedrag=!1,
Character recogn...
1 run ♦ 0 likes
By Przemyslaw Majda  
Created: 15 Nov 2022
Modified: 17 Sep 2023
Clone of "Character recognition neural network" by "Coding Train" project
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
Character recogn...
29 runs ♦ 0 likes
By Rehoboth Salako  
Created: 6 Nov 2025
Modified: 6 Nov 2025
Clone of "Character recognition neural network" by "Coding Train" project
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
Character recogn...
89 runs ♦ 0 likes
By Aishwarya Ramesh  
Created: 18 Nov 2021
Modified: 17 Sep 2023
Doodle Recognition- 21260609
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
New World (clone...
6 runs ♦ 0 likes
By Xiaoyu Lyu  
Created: 18 Nov 2022
Modified: 17 Sep 2023
Clone of "New World" by Niall Kelly
ABHandler.touchDrag = mouseDrag;
ABHandler.initMouseDrag = mouseClick; // Override default desktop controls
ABHandler.mouseDrag = mouseDrag;
function mouseDrag(x, y){ // Disable drag
Character recogn...
68 runs ♦ 0 likes
By Liam Monks  
Created: 12 Nov 2024
Modified: 2 Sep 2025
Clone of "Character recognition neural network" by "Coding Train" project
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
(NN): A-Z Doodle...
59 runs ♦ 0 likes
By Ishrat Syed  
Created: 3 Dec 2022
Modified: 17 Sep 2023
Clone of "Character recognition neural network" by "Coding Train" project
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
Character recogn...
3 runs ♦ 0 likes
By Zephyr Chai  
Created: 27 Nov 2021
Modified: 17 Sep 2023
Clone of "Character recognition neural network (clone by yilin li)" by yilin li
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
Character recogn...
9 runs ♦ 0 likes
By Harshita Tyagi  
Created: 3 Dec 2022
Modified: 17 Sep 2023
Clone of "Character recognition neural network (clone by Harshita Tyagi)" by Harshita Tyagi
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
New World (clone...
1 run ♦ 0 likes
By Adam Gray  
Created: 11 Nov 2022
Modified: 17 Sep 2023
Clone of "New World" by Niall Kelly
ABHandler.touchDrag = mouseDrag;
ABHandler.initMouseDrag = mouseClick;
ABHandler.mouseDrag = mouseDrag;
function mouseDrag(x, y){
bull_business
86 runs ♦ 0 likes
By akshara  
Created: 5 Dec 2020
Modified: 17 Sep 2023
bull_business
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
Character recogn...
0 runs ♦ 0 likes
By Rashmi Das  
Created: 3 Dec 2022
Modified: 17 Sep 2023
Clone of "Character recognition neural network (clone by Rashmi Das)" by Rashmi Das
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;
Character recogn...
60 runs ♦ 0 likes
By yilin li  
Created: 18 Nov 2021
Modified: 17 Sep 2023
Clone of "Character recognition neural network" by "Coding Train" project
let mousedrag = false; // are we in the middle of a mouse drag drawing?
mousedrag = true; // start a mouse drag
if ( mousedrag )
mousedrag = false;


The background is a program, showing the JavaScript graphics used on this site.
The globes light up when you log in.
 
Font:

Users retain ownership of user content.

Platforms      Stats      The name      Terms and conditions

Call for partners      Contact

Call for partners!
Ancient Brain is looking for a partner to co-write a JavaScript or Python coding book for schools, to be used worldwide. This would be a course for students in learning to code from scratch. The book and course will be integrated into the Ancient Brain site. This is an opportunity for someone looking to develop a course and textbook to partner with a site to promote it. Read more.