Cursor Set - 8-Bit

Log-in or register.

8-Bit Cursors

8-Bit
4.8 out of 5 stars. (3 reviews) Log-in to add your review.

Hello! I am back again (hehe it is been a long time). These are a new set of 8-bit cursors (8 bit means bad and un-complex and stuff like that). I haven't uploaded for a long time, so here you go. Hope that this is good for now. I am working on something better than this, but these are temporary and stuff like that. Thanks and Believe in Jesus.

(They are also small because they are 8-bit and stuff)


Tags: Computer Simple ■ Black

Resources

by Axolotlsarecute

See also

Aero Evening TeaserAero Evening Cursors
by Nightfury1901Aero multicolour Blue and red looks like evening
Highlighted and Colored TeaserHighlighted and Colored Cursors
by Justiinಠ_ಠ5312~Thanks For Downloading~ download more cursors here http://www.rw-des...
RealWorld Simple (Dark) TeaserRealWorld Simple (Dark) Cursors
by nibbler1118This set is a remix of the RealWorld Simple Cursor Set but is for any...
DiamOS pack TeaserDiamOS pack Cursors
by DeathkidVR3875This awesome DiamOS Pack will make your computer pop! Go check out th...
Volantes Mini Dark and White TeaserVolantes Mini Dark and White Cursors
by R0mKa5856All of my cursor sets (as of now) aren't mine. The person who made th...
RealWorld Simple (Light) TeaserRealWorld Simple (Light) Cursors
by nibbler999Cursors made with the daily (or 2023 newest) build of RealWorld Curso...
Dual Blade TeaserDual Blade Cursors
by Atom22001820 ---NOTICE---- The only cursors on this set are "...

Recent reviews and comments

user icon ♣Aworld♣ registered user on November 17th 2021

4.5 out of 5 stars.

If they where bigger, it would be better :-(
But i love the simple cursors! 8-)

user icon Diamond registered user on November 17th 2021

5 out of 5 stars.

these are simple but cool! I would also like them if they weren't that small and nice job on this set! :-D

user icon ツ☪ NaLexnu ♡♥ contributing user on November 17th 2021

5 out of 5 stars.

Nice

my favorite

it's the normal

one icon-image/9565-16x16x32.png image

user icon Diamond registered user on November 17th 2021

5 out of 5 stars.

too small for me sorry :-(

user icon Diamond registered user on November 17th 2021

5 out of 5 stars.

I don't liek this because it's too small and bad |-)

user icon Axolotlsarecute registered user on November 19th 2021

bruh 3 ppl r named diamond

user icon Ben Galeas registered user on November 19th 2021

How to get 1 bit cursor
1. Using js-dos api#
To run bundle you just need a one line of code:

Dos(document.getElementById("jsdos")).run("some.jsdos");
Dos receives HTMLDivElement and uses it to create the player UI. To run jsdos bundle just use its method run specifying the url of jsdos bundle.

To use js-dos you need to add js-dos.js script, and js-dos.css style (releases). Also you need to specify path prefix of js-dos installation:

<script src="<path>/js-dos.js"></script>
<link href="<path>/js-dos.css" rel="stylesheet">
// ...
<script>

 emulators.pathPrefix = "<path>/";
 Dos(<element>).run(<bundleUrl>);

Complete example:

examples/dos.html
Run
<!doctype html>
<html>

   <head>
       <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
       <style>
        html, body, #jsdos {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
        }
       </style>
       <script src="/v7/build/releases/latest/js-dos/js-dos.js"></script>
       <link href="/v7/build/releases/latest/js-dos/js-dos.css" rel="stylesheet">
   </head>
   <body>
       <div id="jsdos" />
       <script>
        emulators.pathPrefix = "/v7/build/releases/latest/js-dos/";
        Dos(document.getElementById("jsdos"))
            .run("https://doszone-uploads.s3.dualstack.eu-central-1.amazonaws.com/original/2X/2/24b00b14f118580763440ecaddcc948f8cb94f14.jsdos");
       </script>
   </body>

</html>
INFO
By default, js-dos will load wasm modules relatively from current path, you should specify variable pathPrefix if you want to load them from different place:

emulators.pathPrefix = "<some-path>/";
2. Using emulators-ui (without js-dos services)#
js-dos v7 is based emulators and emulators-ui packages. It provide additinal services over this two packages, if you don't need them, then you can you need to use emulators and emulators-ui packages instead.

To change code above to use emulators and emulators-ui just change scripts imports to:

<script src="emulators/emulators.js"></script>
<script src="emulators-ui/emulators-ui.js"></script>
<link rel="stylesheet" href="emulators-ui/emulators-ui.css">
Complete example:

examples/ui-dos.html
RunCopy
<!doctype html>
<html>

   <head>
       <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
       <style>
        html, body, #jsdos {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
        }
       </style>
       <script src="/v7/build/releases/latest/emulators/emulators.js"></script>
       <script src="/v7/build/releases/latest/emulators-ui/emulators-ui.js"></script>
       <link rel="stylesheet" href="/v7/build/releases/latest/emulators-ui/emulators-ui.css">
   </head>
   <body>
       <div id="jsdos" />
       <script>
        emulators.pathPrefix = "/v7/build/releases/latest/js-dos/";
        Dos(document.getElementById("jsdos"))
            .run("https://doszone-uploads.s3.dualstack.eu-central-1.amazonaws.com/original/2X/2/24b00b14f118580763440ecaddcc948f8cb94f14.jsdos")
       </script>
   </body>

</html>
3. Using emulators#
In case you don't want to use the browser API of js-dos project, you can use just the emulators package. Read the guide to how we use emulators to estimate js-dos performance.

user icon Axolotlsarecute registered user on March 14th 2022

Ben pls dont comment anything unrelated, it takes too much space

user icon Anonymous