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.
<a href="#" style="background-image: url(gif_gener.php?text=Menupunkt"></a>
<a href="#" style="background-image: url(gif_gener_hover.php?text=Menupunkt"></a>
<style type="text/css">
a.link1 {
background-image: url('/pfad/bildsowieso.jpg');
}
a.link1:hover {
background-image: url('pfad/bildanderes.jpg');
}
</style>
a.menue_main
{
background-color: white;
background-repeat: no-repeat;
width:150px;
height: 20px;
display: block;
}
a.menue_main:hover
{
background-color: #FFF98A;
background-repeat: no-repeat;
width:150px;
height: 20px;
display: block;
}
<a href="#" class="menue_main" style="background-image: url(text.php?text=Link%201)"></a>
$text = $_GET['text'];
header ("Content-type: image/png");
$im = ImageCreate (150, 20);
$red = ImageColorAllocate ($im, 200, 200, 200);
$trans = ImageColorAllocate ($im, 0x20, 0x60, 0xaa);
$trans = ImageColortransparent($im,$trans);//affects all occurances of blue, before and after this line
ImageString ($im, 5, 60, 2, $text, $trans);
Imagepng ($im);
ImageTTFText ($im, 11, 0, 50, 14, $trans, "LATENITEF", $text);