IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

jQuery Discussion :

Utilisation de jCanvas [Débutant(e)]


Sujet :

jQuery

  1. #1
    Membre actif
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Décembre 2007
    Messages
    696
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine Maritime (Haute Normandie)

    Informations professionnelles :
    Activité : Développeur .NET

    Informations forums :
    Inscription : Décembre 2007
    Messages : 696
    Points : 222
    Points
    222
    Par défaut Utilisation de jCanvas
    Bonsoir.

    J'essaie jCanvas ces jours ci, et je tombe sur une petite diffculté. bon voilà, j'aimerais interagir avec certains éléments de mon canvas.

    Disons que j'ai 2 rectangles dans mon canvas, plus un bouton ou lien href en dehors. J'aimerais changer la couleur d'un de mes rectangles, connaitre leur position x et y... Je suppose qu'il faut leur adresser une classe ou un id, si seulement c'est possible ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    boardCanvas.drawRect({ layer: true, group: "myBoard", fillStyle: "#909090", x: 0, y: 470, width: 20, height: 75, fromCenter: false });
    			boardCanvas.drawRect({ layer: true, group: "myBoard", fillStyle: "#505050", x: 0, y: 545, width: 20, height: 75, fromCenter: false });
    Pourriez-vous m'aider svp ? Merci

  2. #2
    Rédacteur

    Avatar de danielhagnoul
    Homme Profil pro
    Étudiant perpétuel
    Inscrit en
    Février 2009
    Messages
    6 389
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 73
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant perpétuel
    Secteur : Enseignement

    Informations forums :
    Inscription : Février 2009
    Messages : 6 389
    Points : 22 933
    Points
    22 933
    Billets dans le blog
    125
    Par défaut
    Bonsoir

    Je viens de découvrir un bon plugin grâce à votre question. Je me suis amusé un peu, j'espère avoir en même temps répondu à votre question.

    Pour tester, il suffit de copier-coller ma page de test :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    <!DOCTYPE html>
    <html lang="fr" dir="ltr">
    <head>
    	<meta charset="utf-8">
    	<meta name="viewport" content="initial-scale=1.0">
    	<meta name="author" content="Daniel Hagnoul">
    	<title>Forum jQuery</title>
    	<script src="http://cdnjs.cloudflare.com/ajax/libs/headjs/0.99/head.min.js"></script>
    	<script>
    		"use strict";
     
    		head.js( 
    			"http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js", 
    			"http://code.jquery.com/jquery-2.0.0.min.js",
    			"http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/i18n/jquery-ui-i18n.min.js",
    			"http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js",
    			"http://danielhagnoul.developpez.com/lib/dvjh/base.js",
    			"jcanvas.js",
    			function(){
     
    				$( function(){
     
     
    				});
     
    				$( window ).load( function(){
     
    					/*
    					 * http://calebevans.me/projects/jcanvas/docs/
    					 */
     
    					var jObjCanvas = $( "canvas" );
     
    					jObjCanvas
    						.drawRect({
    							"layer" : true,
    							"name" : "monRectangle1",
    							"group": "monRectangle",
    							"data" : {
    								"auteur" : "Daniel Hagnoul",
    								"date" : "2013-04-27",
    								"numero" : 0
    							},
    							"fillStyle" : "#9cf",
    							"x" : 50,
    							"y" : 50,
    							"width" : 200,
    							"height" : 100,
    							"fromCenter" : false,
    							"click" : function( layer ){
    								$( this ).animateLayer( layer, {
    									"rotate" : "+=144"
    								});
    							}
    						})
    						.drawRect({
    							"layer" : true,
    							"name" : "monRectangle2",
    							"group": "monRectangle",
    							"data" : {
    								"auteur" : "Daniel Hagnoul",
    								"date" : "2013-04-27",
    								"numero" : 1
    							},
    							"strokeStyle" : "#36a",
    							"strokeWidth" : 3,
    							"x" : 150,
    							"y" : 100,
    							"width" : 200,
    							"height" : 100,
    							"cornerRadius" : 10,
    							"fromCenter" : false,
    							"mouseover" : function( layer ){
    								$( this ).animateLayer( layer, {
    									"rotate" : "+=60"
    								}, 500 );
    							},
    							"mouseout" : function( layer ){
    								$( this ).animateLayer( layer, {
    									"rotate" : "-=60"
    								}, 500 );
    							}
    						})
    						.drawText({
    							"layer" : true,
    							"name" : "monTexte",
    							"group": "monRectangle",
    							"fillStyle" : "#9cf",
    							"strokeStyle" : "#000",
    							"strokeWidth" : 1,
    							"x" : 100,
    							"y" : 250,
    							"text" : "Cliquer ici",
    							"font" : "18pt 'Trebuchet MS', sans-serif",
    							"cursor" : "pointer",
    							"click" : function( layer ){
    								window.open( "http://www.google.com/" );
    							}
    						});
     
    					var layers = jObjCanvas.getLayers( "monRectangle" );
     
    					// debug, console, touche F12
    					console.log( layers );
     
    					$( "#btnAction" ).on( "click", function(){
    						var layer = jObjCanvas.getLayer( "monRectangle2" );
     
    						layer.cornerRadius = 3;
    						layer.strokeStyle = "#ccc";
     
    						// debug, console, F12
    						console.log( "x = ", layer.x, " , y = ", layer.y );
     
    						jObjCanvas.drawLayers();
     
    					});
     
    					$( "a[href='#ici']" ).on( "click", function(){
    						jObjCanvas.getLayer( "monTexte" ).text = "Ici aussi !";
     
    						jObjCanvas.drawLayers();
    					});
    				});
    			}
    		);
    	</script>
    	<link href='http://fonts.googleapis.com/css?family=Sofia|Ubuntu:400|Kreon'>
    	<link rel="stylesheet" href="http://danielhagnoul.developpez.com/styles/dvjhRemBase.css">
    	<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/themes/sunny/jquery-ui.min.css">
    	<style>
    		/* TEST -- Nota bene : ici 1 rem est égal à 1 px, voir dvjhRemBase.css */
    		div { margin: 1.2rem; }
    	</style>
    </head>
    <body>
    	<header>
    		<hgroup>
    			<h1>Forum jQuery</h1>
    			<h2>
    				<a href="http://www.developpez.net/forums/d1333666/jquery/ajouter-nouveau-tr-au-dernier-tr-click/">Lien</a>
    			</h2>
    		</hgroup>
    	</header>
    	<section class="conteneur">
     
    		<div>
    			<button id="btnAction">Action !</button> <a href="#ici">Cliquer ici</a>	
    		</div>
    		<div>
    			<canvas width="500" height="300"></canvas>
    		</div>
     
    	</section>
    	<footer itemscope itemtype="http://danielhagnoul.developpez.com/">
    		<time datetime="2013-04-27T02:02:15.367+02:00" pubdate>2013-04-27T02:02:15.367+02:00</time>
    		<span itemprop="name">Daniel Hagnoul</span>
    		<a href="http://www.developpez.net/forums/u285162/danielhagnoul/" itemprop="url">@danielhagnoul</a>
    		<a href="http://danielhagnoul.developpez.com/" itemprop="url">Mon cahier d’exercices</a>
    		<a href="http://javascript.developpez.com/faq/jquery/" itemprop="url">FAQ</a>
    		<a href="http://javascript.developpez.com/cours/?page=frameworks#jquery" itemprop="url">Tutoriels</a>
    	</footer>
    </body>
    </html>

    Blog

    Sans l'analyse et la conception, la programmation est l'art d'ajouter des bogues à un fichier texte vide.
    (Louis Srygley : Without requirements or design, programming is the art of adding bugs to an empty text file.)

Discussions similaires

  1. utiliser les tag [MFC] [Win32] [.NET] [C++/CLI]
    Par hiko-seijuro dans le forum Visual C++
    Réponses: 8
    Dernier message: 08/06/2005, 15h57
  2. Réponses: 4
    Dernier message: 05/06/2002, 14h35
  3. utilisation du meta type ANY
    Par Anonymous dans le forum CORBA
    Réponses: 1
    Dernier message: 15/04/2002, 12h36
  4. [BCB5] Utilisation des Ressources (.res)
    Par Vince78 dans le forum C++Builder
    Réponses: 2
    Dernier message: 04/04/2002, 16h01
  5. Réponses: 2
    Dernier message: 20/03/2002, 23h01

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo