lexi
Gesperrt
Original geschrieben von boom
Ok, ist keine .cur, geb ich ja zu, aber ist das wichig?
afaik: ja.
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Original geschrieben von boom
Ok, ist keine .cur, geb ich ja zu, aber ist das wichig?
[...]url([Datei]) = Beliebiger Cursor, [Datei] sollte eine GIF- oder JPG-Grafik sein.[...]
<?php
// customcursor.php
header ("Content-type: image/gif");
$im = @imagecreate (10, 10);
$background_color = imagecolorallocate ($im, 255, 255, 255);
$text_color = imagecolorallocate ($im, 233, 14, 91);
imagestring ($im, 1, 5, 5, "<3", $text_color);
imagegif ($im);
?>
<?php
// customcursor.php
header ("Content-type: image/jpeg");
$im = @imagecreate (10, 10);
$background_color = imagecolorallocate ($im, 255, 255, 255);
$text_color = imagecolorallocate ($im, 233, 14, 91);
imagestring ($im, 1, 5, 5, "<3", $text_color);
imagejpeg ($im);
?>