rernanded
Erfahrenes Mitglied
Hi
habe zwei kleine Probleme:
In meinem kleinen Code funktioniert die Einbing von css mittels style-tag im head gar nicht nur wenn ich es direkt im canvas-tag innerhalb des body einbaue.
Ausserdem funktioniert das js nicht.
Vllt. ist das was canvas-spezifisches.
MONI
Version 1 style im head - style funktioniert NICHT - script funktioniert NICHT
Version 2 style NICHT im head - style funktioniert - script funktioniert NICHT
habe zwei kleine Probleme:
In meinem kleinen Code funktioniert die Einbing von css mittels style-tag im head gar nicht nur wenn ich es direkt im canvas-tag innerhalb des body einbaue.
Ausserdem funktioniert das js nicht.
Vllt. ist das was canvas-spezifisches.
MONI
Version 1 style im head - style funktioniert NICHT - script funktioniert NICHT
HTML:
<!doctype html>
<html>
<head>
<style>
#123canvas {
border-width:13px;
border-color:black;
border-style:solid;
}
</style>
<script type="text/javascript">
function 123canvasborder() {
document.getElementById("123canvas").style.borderWidth = "0px";
}
</script>
</head>
<body>
<canvas id="123canvas" width="900px" height="600px" onmouseover="123canvasborder()"></canvas>
</body>
</html>
Version 2 style NICHT im head - style funktioniert - script funktioniert NICHT
HTML:
<!doctype html>
<html>
<head>
<script type="text/javascript">
function 123canvasborder() {
document.getElementById("123canvas").style.borderWidth = "0px";
}
</script>
</head>
<body>
<canvas id="123canvas" width="900px" height="600px" style="border-width:13px; border-color:black; border-style:solid;" onmouseover="123canvasborder()"></canvas></body>
</html>