<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> #abc{ background: red; height: 300px; } </style> <script type="text/javascript"> var c = 0; document.addEventListener("DOMContentLoaded", function(){ showtime = setInterval("animate()", 2); }, false); function animate(){ var abc = document.getElementById("abc"); var h = abc.offsetHeight; if(c == 700){ clearInterval(showtime); } h++; c++; abc.style.height = h + "px"; } </script> </head> <body> <div id="abc"> Lorem ipsum dol sir amdet </div> </body> </html>
objąłem ten skrypt function i dodałem ONclick dla jej wywołania
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> #abc{ background: red; height: 300px; } </style> <script type="text/javascript"> function zmien() { var c = 0; document.addEventListener("DOMContentLoaded", function(){ showtime = setInterval("animate()", 2); }, false); function animate(){ var abc = document.getElementById("abc"); var h = abc.offsetHeight; if(c == 700){ clearInterval(showtime); } h++; c++; abc.style.height = h + "px"; } } </script> </head> <body> <div id="abc"> Lorem ipsum dol sir amdet </div> </body> </html>
niestety wtedy skrypt nie działa. Proszę o pomoc, siedzę 2 dni i nic nie przychodzi mi do głowy dlaczego w ten sposób nie mogę włączać tej funkcji