37 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						||
<html lang="fr">
 | 
						||
 | 
						||
<head>
 | 
						||
    <title>Canvas - Lucien Cartier-Tilet</title>
 | 
						||
    <meta name="author" content="Lucien Cartier-Tilet" />
 | 
						||
    <meta name="description" content="Page universitaire de Lucien Cartier-Tilet" />
 | 
						||
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 | 
						||
    <meta name="viewport" content="initial-scale=1, user-scalable=yes, maximum-scale=5, width=device-width, height=device-height">
 | 
						||
    <link rel="stylesheet" type="text/css" href="../css/style.css" />
 | 
						||
    <link rel="stylesheet" type="text/css" href="../css/canvas.css" />
 | 
						||
    <script type="text/javascript" src="../js/canvas.js"></script>
 | 
						||
</head>
 | 
						||
 | 
						||
<body>
 | 
						||
    <ul class="navbar">
 | 
						||
        <li><a href="../">Home</a></li>
 | 
						||
        <li><a href="../square/">Square</a></li>
 | 
						||
        <li><a href="../faker/">Faker</a></li>
 | 
						||
        <li><a class="active" href="../canvas/">Canvas</a></li>
 | 
						||
        <li><a href="../button/">Button</a></li>
 | 
						||
        <li><a href="../animation/">Animation</a></li>
 | 
						||
        <li><a href="../edit-image/">Édition d’Image</a></li>
 | 
						||
    </ul>
 | 
						||
    <div id="container">
 | 
						||
        <img src="../img/france_ardeche_landscape.jpg" alt="Vue d’Ardèche" id="ardeche" />
 | 
						||
        <div class="content">
 | 
						||
            <p>Un canvas contenant une image. En passant la souris par dessus l'image on obtient un zoom sur cette dernière.</p>
 | 
						||
            <p><a href="https://www.instagram.com/p/BWqLAPSF7Fh/">[source image]</a></p>
 | 
						||
        </div>
 | 
						||
        <canvas id="canvastp1" width="800" height="600"></canvas>
 | 
						||
        <canvas id="loupe" width="80" height="80" display="none"></canvas>
 | 
						||
    </div>
 | 
						||
</body>
 | 
						||
 | 
						||
</html>
 |