![]() |
|
bubble name thingy.. I need to work on names... - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Design (https://sinister.ly/Forum-Design) +--- Forum: Web Design (https://sinister.ly/Forum-Web-Design) +--- Thread: bubble name thingy.. I need to work on names... (/Thread-bubble-name-thingy-I-need-to-work-on-names) Pages:
1
2
|
bubble name thingy.. I need to work on names... - Inori - 08-26-2014 The actual program is waaay cooler than the name. I can't really find a way to describe it accurately so check it out for yourself! link main.js Code: background = [0, 0, 0, 0];
var myName = "RubyRose";
var red = [0, 100, 63];
var black = [0, 0, 0];
var letterColors = [red, black];
drawName(myName, letterColors);
if(10 < 3)
{
bubbleShape = 'square';
}
else
{
bubbleShape = 'square';
}
bounceBubbles();index.html Code: <!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="http://s3.amazonaws.com/codecademy-content/courses/hour-of-code/js/alphabet.js"></script>
</head>
<body>
<canvas id="myCanvas"></canvas>
<script type="text/javascript" src="http://s3.amazonaws.com/codecademy-content/courses/hour-of-code/js/bubbles.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>RE: bubble name thingy.. I need to work on names... - Gr33n - 09-09-2014 That is pretty cool but I can't really think of a practical use for it xD! RE: bubble name thingy.. I need to work on names... - Gr33n - 09-09-2014 That is pretty cool but I can't really think of a practical use for it xD! RE: bubble name thingy.. I need to work on names... - Singularity_mybb_import13102 - 09-09-2014 Code: if(10 < 3)
{
bubbleShape = 'square';
}
else
{
bubbleShape = 'square';
}Why? RE: bubble name thingy.. I need to work on names... - Singularity_mybb_import13102 - 09-09-2014 Code: if(10 < 3)
{
bubbleShape = 'square';
}
else
{
bubbleShape = 'square';
}Why? RE: bubble name thingy.. I need to work on names... - bluedog.tar.gz - 09-09-2014 (09-09-2014, 11:44 AM)Singularity Wrote: LOL RE: bubble name thingy.. I need to work on names... - bluedog.tar.gz - 09-09-2014 (09-09-2014, 11:44 AM)Singularity Wrote: LOL RE: bubble name thingy.. I need to work on names... - Inori - 09-09-2014 (09-09-2014, 11:44 AM)Singularity Wrote: Because boredom. RE: bubble name thingy.. I need to work on names... - Inori - 09-09-2014 (09-09-2014, 11:44 AM)Singularity Wrote: Because boredom. RE: bubble name thingy.. I need to work on names... - Singularity_mybb_import13102 - 09-09-2014 (09-09-2014, 12:13 PM)RubyRose Wrote: Because boredom. Damn, I was expecting something more like: Because I bought shoes from a drug dealer. I don't know what he laced them with, but I've been tripping all day. |