Jump to content

webtecgeek

Members
  • Posts

    2
  • Joined

  • Last visited

About webtecgeek

  • Birthday 09/08/1990

Previous Fields

  • Languages
    UK

Contact Methods

  • Website URL
    http://thecacaocafe.com

Profile Information

  • Location
    PARIS
  • Interests
    Digital responsive Drawing in website

webtecgeek's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hello, I have a code here where I display an image and when I click on it, it becomes a canvas. It is OK but I want in my website to display only the CANVAS . Is there a way to load the canvas without displaying the image it comes from on the screen? Thanks for any help. <!DOCTYPE html><html> <head> <title>ANIMATION with timer: a solution very difficult to apply</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script> </head> <body> <img id = "img_src13" src="http://www.thecacaocafe.com/img/test.png" width="448"> <br> AAAA <canvas id="myCanvas_IN" width="448" height="448"></canvas><br> <script>$(function() { $("#img_src13").click( function() { run1=0; canvas_in = $("#myCanvas_IN"); canvasinPosition = { x: canvas_in.offset().left, y: canvas_in.offset().top }; num = 1; img_srcin="img_src13"; elemin = document.getElementById("myCanvas_IN"); if (elemin && elemin.getContext) { contextin = elemin.getContext("2d"); if (contextin) { imgin=document.getElementById(img_srcin); contextin.drawImage(imgin,0,0); } } imgdin = contextin.getImageData(0, 0, 448, 448); pixin = imgdin.data; });}); </script> </body></html>
  2. Hello, I am building a responsive WEBSITE. For Dynamic DOM I use JQUERY and CSS for HTML presentation. I've heard a bit about Less-CSS in Bootstrap. It seems we can have dynamic parameters inside the CSS but I have not understood how it works. They speak of compiling with a JS library. If some one could write to me 2 lines on this subject and give me a link where it is not too much difficult to understand, It would really help because until now I don't understand both what it enables, requires and how to process. Thanks.
  3. design jquery responsive animation bootstrap

    1. webtecgeek

      webtecgeek

      Work in IT and used to draw as hobby.

      Now I'm really interested in progressing in website creation.

      Take all my free time coding

×
×
  • Create New...