La propiedad SVG Document.timeline representa la línea de tiempo predeterminada del documento actual. Esta línea de tiempo se crea automáticamente cuando se carga la página. Para cada documento, la línea de tiempo es única.
Sintaxis:
var tl = document.timeline
Valor devuelto: esta propiedad devuelve un objeto que contiene información sobre la línea de tiempo del documento.
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <body> <svg width="700" height="500" xmlns="http://www.w3.org/2000/svg"> <script> console.log(document.timeline); </script> </svg> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <h1>GeeksforGeeks</h1> <div id="abc"></div> <svg width="700" height="500" xmlns="http://www.w3.org/2000/svg"> <script> var a = document.getElementById("abc"); a.innerHTML = "Timeline of document is " + document.timeline.currentTime; </script> </svg> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome 84+
- Borde 84+
- Firefox 75+
- Safari 13.1+
- Ópera 70+
- Internet Explorer no es compatible