new background.png images for free "b8ckgroun8"

Share your advanced knowledge/code with the community.
Pforzheimer
Posts: 2
Joined: Thu Apr 13, 2023 7:27 pm

new background.png images for free "b8ckgroun8"

Post by Pforzheimer »

b8ckgroun8.png Version 1.0, 13.April 2023, text in english, french and german:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Hello, everyone can use these background.png images for free in their SpiderBasic
projects.
Using it is very simple, just copy one of the images into the
finished APP's media folder and rename it to background.png, deleting or
renaming the old background.png file.
I also allow these images to be included in the SpiderBasic distribution as
long as this readme.txt file remains in the b8ckgroun8 folder along with the images.


Download from http://chatalarm.de/spiderbasic/b8ckgroun8.zip
Email: pforzheimer AT gmx.net

Greetings from "Pforzheimer"
P.S. If you want to contact me,
please use the English or German language.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Bonjour, tout le monde peut utiliser ces images background.png gratuitement
dans leurs projets SpiderBasic. Son utilisation est très simple, copiez
simplement l'une des images dans le dossier media de l'APP et
renommez-la en background.png, en supprimant ou en renommant l'ancien
fichier background.png.
J'autorise également l'inclusion de ces images dans la distribution
SpiderBasic tant que ce fichier readme.txt reste dans le dossier b8ckgroun8
avec les images.


Télécharger depuis http://chatalarm.de/spiderbasic/b8ckgroun8.zip
E-mail : pforzheimer AT gmx.net

Salutations de "Pforzheimer"
PS Si vous voulez me contacter,
veuillez utiliser la langue anglaise ou allemande.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Hallo, alle können diese background.png-Bilder kostenlos in ihren SpiderBasic
Projekten verwenden. Die Verwendung ist sehr einfach, kopieren Sie einfach
eines der Bilder in den media Ordner der fertigen APP und benennen Sie es in
background.png um, indem Sie die alte background.png-Datei löschen oder umbenennen.
Ich erlaube auch, dass diese Bilder in die SpiderBasic-Distribution
aufgenommen werden, solange diese readme.txt-Datei zusammen
mit den Bildern im Ordner b8ckgroun8 verbleibt.


Download von http://chatalarm.de/spiderbasic/b8ckgroun8.zip
E-Mail: pforzheimer AT gmx.net

Grüße von "Pforzheimer"
P.S. Wenn Sie mich kontaktieren möchten,
verwenden Sie bitte die englische oder deutsche Sprache.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Files in b8ckgroun8 folder:
background.png (background-gradient-blue.png in 1286x720px)
readme-background.txt (this textfile)
Files in subfolders 1286x720px and 640x360px:
background-gradient-blue.png - As the name says... you can turn them upside down also
background-gradient-green.png - As the name says... you can turn them upside down also
background-gradient-red.png - As the name says... you can turn them upside down also
background-clear.png - just a clear background, white in most browsers
background-black.png - HTML: #000000
background-grey34.png - HTML: #222222
background-grey102.png - HTML: #666666
background-grey153.png - HTML: #999999
background-white240.png - HTML: #F0F0F0
background-white255.png - HTML: #FFFFFF
background-spider-original-optimized.png (146 KB / 60 KB instead of 210 KB)
Pforzheimer
Posts: 2
Joined: Thu Apr 13, 2023 7:27 pm

Re: new background.png images for free "b8ckgroun8"

Post by Pforzheimer »

Here some images in the lower resolution (640x360px), they are all very small in filesize.

background-gradient-blue.png - 1571 Bytes
Image

background-gradient-green.png - 1582 Bytes
Image

background-grey153.png - 122 Bytes
Image


background-black.png - 122 Bytes
background-grey34.png - 122 Bytes
background-grey102.png - 122 Bytes
background-grey153.png - 122 Bytes
background-white240.png - 122 Bytes
background-white255.png - 122 Bytes

It would be very nice if you tell us here, if you use this images for your project.

Nice greetings from Pforzheimer
User avatar
Paul
Posts: 195
Joined: Wed Feb 26, 2014 6:46 pm
Location: Canada
Contact:

Re: new background.png images for free "b8ckgroun8"

Post by Paul »

Or, instead of loading an image to fill a solid background color just use code...

Code: Select all

Procedure BGColor(color)
  Protected background_color.s= "#" + RSet(Hex(Red(color)), 2, "0") + RSet(Hex(Green(color)), 2, "0") + RSet(Hex(Blue(color)), 2, "0")
  Protected styles.s="html { background: none; background-color: " + background_color + ";}"
  
  ! if (!document.getElementById('SBCustomStyles')) {
  !   var StyleElement = document.createElement('style');
  !   StyleElement.type = 'text/css';
  !   StyleElement.id = 'SBCustomStyles';
  !   var HeadElement = document.getElementsByTagName('head')[0];
  !   HeadElement.appendChild(StyleElement);
  ! }  
  ! document.getElementById("SBCustomStyles").appendChild(document.createTextNode( v_styles ));
EndProcedure

BGColor($88ff88)
Post Reply