A Pen by Shaik Saif Ali on CodePen.
Created
September 14, 2016 05:43
-
-
Save Saif-Shines/3ce53c198c6838694fc6292eb6acd733 to your computer and use it in GitHub Desktop.
BLjZKy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var myName = "Happy Birthday,Tomato"; | |
var red = [0, 100, 63]; | |
var orange = [40, 100, 60]; | |
var green = [75, 100, 40]; | |
var blue = [196, 77, 55]; | |
var purple = [280, 50, 60]; | |
var letterColors = [red, orange, green, blue, purple]; | |
drawName(myName, letterColors); | |
if(10 < 3) | |
{ | |
bubbleShape = 'love'; | |
} | |
else | |
{ | |
bubbleShape = 'love'; | |
} | |
bounceBubbles(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body{ | |
background: blue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment