FPS

5 fps

10 fps

30 fps

FPS

 

Embed Code

				
						<div class="container">
		<h2>5 fps</h2>
		<div id="zoom1" style="width:100%; height:500px;"></div>
	</div>
	<div class="container">
		<h2>10 fps</h2>
		<div id="zoom2" style="width:100%; height:500px;"></div>
	</div>
	<div class="container">
		<h2>30 fps</h2>
		<div id="zoom3" style="width:100%; height:500px;"></div>
	</div>
				
			
				
						<script src="/zoomlook/assets/ZLWebGL.js"></script>
	<script src="/zoomlook/assets/ZLPlayer.min.js"></script>
	
<script>
		window.onload = () => {
			const ZL1 = new ZLPlayer({
				basePath: "/zoomlook/pix/ZLGLAnimation/",
				clickLoad: true,
				type: "animation",
				autoplay: true,
				fps: 5
			});
			ZL1.loadZLView("LOOK01", "zoom1");

			const ZL2 = new ZLPlayer({
				basePath: "/zoomlook/pix/ZLGLAnimation/",
				clickLoad: true,
				type: "animation",
				autoplay: true,
				fps: 10
			});
			ZL2.loadZLView("LOOK02", "zoom2");

			const ZL3 = new ZLPlayer({
				basePath: "/zoomlook/pix/ZLGLVideo/",
				clickLoad: true,
				type: "ZLVideo",
				autoplay: true,
				fps: 30
			});
			ZL3.loadZLView("ZLV-LOOK07", "zoom3");
		};
	</script>