3D-Objekte in Webseiten

Aus Wikidental.de

X3D in HTML eingebettet



<!DOCTYPE HTML>

<html>

<head>

    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>

    <title>Markus X3D</title>

     <meta charset="utf-8" />

    <script type='text/javascript' src='https://www.x3dom.org/download/x3dom.js'> </script>
    <link rel='stylesheet' type='text/css' href='https://www.x3dom.org/download/x3dom.css'/>
</head>
<body>
<h1>X3D-Objekt in HTML5</h1>

<x3d width='500px' height='400px'>

   	 <scene>
		<inline url="markus.x3d"> </inline> 
   	 </scene> 
</x3d>

</body>