Friday, May 6, 2016
Monday, April 4, 2016
Monday, March 28, 2016
Wednesday, March 23, 2016
Monday, March 21, 2016
HTML Coding
<!DOCTYPE HTML>
<html>
<head>
<script>
window.onload = function() {
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
////////////////////////////////////// start below this line ˇˇˇˇˇˇˇˇˇˇ
//Background
context.beginPath();
context.rect(0, 0, 500, 500);
var grd = context.createLinearGradient(0, 500, 500, 500);
grd.addColorStop(0, 'rgb(0, 0, 0)');
grd.addColorStop(0.2, 'rgb(75, 0, 130)');
grd.addColorStop(.65, 'rgb(186, 85, 211)');
grd.addColorStop(1, 'rgb(221, 160, 221)');
context.fillStyle = grd;
context.fill();
context.stroke();
//Long Rays
context.beginPath();
context.moveTo(320, 155);
context.quadraticCurveTo(330, 115, 295, 90);
context.quadraticCurveTo(260, 75, 275, 20);
context.quadraticCurveTo(245, 155, 325, 175);
context.closePath();
context.strokeStyle = 'rgb(255, 215, 0)';
context.fillStyle = 'rgb(255, 215, 0)';
context.fill();
context.lineWidth = 1;
context.stroke();
context.beginPath();
context.moveTo(280, 180);
context.bezierCurveTo(275, 155, 280, 135, 250, 125);
context.quadraticCurveTo(175, 100, 200, 50);
context.quadraticCurveTo(150, 100, 205, 143);
context.bezierCurveTo(245, 160, 255, 190, 255, 200);
context.closePath();
context.strokeStyle = 'rgb(255, 215, 0)';
context.fillStyle = 'rgb(255, 215, 0)';
context.fill();
context.lineWidth = 1;
context.stroke();
context.beginPath();
context.moveTo(255, 225);
context.quadraticCurveTo(190, 190, 145, 235);
context.quadraticCurveTo(125, 250, 85, 250);
context.quadraticCurveTo(235, 300, 280, 220);
context.closePath();
context.strokeStyle = 'rgb(255, 215, 0)';
context.fillStyle = 'rgb(255, 215, 0)';
context.fill();
context.lineWidth = 1;
context.stroke();
context.beginPath();
context.moveTo(285, 275);
context.quadraticCurveTo(220, 275, 220, 340);
context.quadraticCurveTo(230, 375, 190, 400);
context.quadraticCurveTo(290, 400, 300, 285);
context.closePath();
context.strokeStyle = 'rgb(255, 215, 0)';
context.fillStyle = 'rgb(255, 215, 0)';
context.fill();
context.lineWidth = 1;
context.stroke();
//Short Rays
context.beginPath();
context.moveTo(297, 160);
context.lineTo(307, 138);
context.lineTo(323, 155);
context.lineWidth = 1;
context.strokeStyle = '#FF6633';
context.fillStyle = '#FF6633';
context.fill();
context.stroke();
context.beginPath();
context.moveTo(285, 165);
context.lineTo(263, 160);
context.lineTo(265, 185);
context.lineWidth = 1;
context.strokeStyle = '#FF6633';
context.fillStyle = '#FF6633';
context.fill();
context.stroke();
context.beginPath();
context.moveTo(260, 200);
context.lineTo(238, 210);
context.lineTo(258, 230);
context.lineWidth = 1;
context.strokeStyle = '#FF6633';
context.fillStyle = '#FF6633';
context.fill();
context.stroke();
context.beginPath();
context.moveTo(260, 240);
context.lineTo(250, 265);
context.lineTo(270, 265);
context.lineWidth = 1;
context.strokeStyle = '#FF6633';
context.fillStyle = '#FF6633';
context.fill();
context.stroke();
context.beginPath();
context.moveTo(285, 275);
context.lineTo(290, 300);
context.lineTo(310, 285);
context.lineWidth = 1;
context.strokeStyle = '#FF6633';
context.fillStyle = '#FF6633';
context.fill();
context.stroke();
//Sun Outline
context.beginPath();
context.arc(320, 220, 65, 0, 2*Math.PI, false);
context.fillStyle = 'rgb(255, 215, 0)';
context.fill();
context.lineWidth = 6;
context.strokeStyle = '#FFFFCC';
context.stroke();
//Moon Outline
context.beginPath();
context.moveTo(295, 280); //Only need the moveTo code once per shape.
context.bezierCurveTo(360, 280, 360, 150, 285, 165); //The end of your first curve is the start of your second curve or line
context.bezierCurveTo(416, 112.5, 416, 315, 295, 280);
context.closePath();
context.strokeStyle = 'rgba(65, 105, 225, 0.95)';
context.fillStyle = 'rgba(65, 105, 225, 1)';
context.fill();
context.lineWidth = 5;
context.stroke();
//Moon Details
context.beginPath();
context.moveTo(350, 200);
context.lineTo(335,225);
context.lineTo(350,225);
context.lineWidth = 1;
context.strokeStyle = '#4169E1';
context.fillStyle = '#4169E1';
context.fill();
context.stroke();
context.beginPath();
context.moveTo(350, 210);
context.lineTo(354,205);
context.lineTo(358,210);
context.lineWidth = 2;
context.lineCap = "round";
context.strokeStyle = '#FFFFCC';
context.stroke();
////////////////////////////////////// end above this line ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ
};
</script>
</head>
<body>
<canvas id="myCanvas" width="500" height="500"></canvas>
</body>
</html>
Monday, February 29, 2016
Tuesday, February 23, 2016
Sunday, February 21, 2016
Final Company Logo
Healing by Dreaming Foundation
Non-for profit organization that would connect companies and patients from hospitals and assisted living homes. Through extended stays in hospitals and constant pain, patients become depressed and loose fighting spirit. This is when Healing by Dreaming would come in. It would grant a dream, including a special meal, a possible day trip (when approved by health provider), a therapy animal visit, or a spa service. Companies would gain the opportunity to engage with the community and patients would benefit from a wish.
Target market: Long stay hospitalized patient, geriatric patients, pediatric patient, and seniors in assisted living homes.
Target market: Long stay hospitalized patient, geriatric patients, pediatric patient, and seniors in assisted living homes.
Tuesday, February 16, 2016
Thursday, February 11, 2016
Company Logo Analysis
Company
Logo Analysis (Opinion)
Company logo: McDonald’s Corporation
Target audience: Limited counter service customers, family
friendly fast food restaurant
Successful strategy, why: Slogan “I’m lovin’ it” has been
associated with happiness and quality. The company has been successful at
branding the slogan and the brand. The logo originated from the shape of the
curved signs the founder would use to promote the restaurant. The simple design
is easy to remember, iconic and international.
Color choices, style: Warm colors (yellow, red, orange).
These colors induce hunger and comfort feeling
Company logo: Puma
Target audience: Professional athletes, sport
enthusiasts
Successful strategy, why: The puma is the fastest animal in
the kingdom. Therefore is no surprise that the company advertises speediness,
agility and freedom. The logo is successful, as well as visually pleasant. It
is both masculine and feminine. In my opinion, it’s a perfect balance between power
and grace.
Color choices, style: Simple one color: black, red or white
Source: http://us.puma.com/en_US/home
Company logo: Apple
Target audience: Innovation enthusiasts
Successful strategy, why: The simple, friendly design makes the product seen easy to use and available to all ages.
Color choices, style: The color choices from the company are simple, neutral: black, white, platinum, gold
Source: http://www.apple.com/
Company logo: Bacardi
Target audience: Legal age drinkers
Successful strategy, why: Bacardi’s distinctive bat in the
logo was inspired by the origins of the liquor: Caribbean Islands. These
islands were presumed to have wild life, virgin territories, and adventurous
opportunities for those brave enough to explore them. The logo is effective
because it symbolizes strength, valor and a hint of attractive mystery.
Color choices, style: Warm, dark colors including red,
black, gold and white
Source: http://www.bacardi.com/us/lda
Company logo: CBS Network
Target audience: TV viewers, family oriented channel
Successful strategy, why: The logo is created by simple
shapes (rectangles, circles, and ovals) that together depict a human eye. It is
consistent with the business because CBS is a TV broadcasting network. I
believe it is easy to recognize what the company does.
Color choices, style: Simple one color: black, blue or white
Source: http://www.cbs.com/
Monday, February 8, 2016
My artistic side
Maria Alejandra Ibarra
I am a senior international student majoring in International Business and Finance. I was born and raised in Mexico City and my first language is Spanish. I enrolled in this class to learn how to use digital tools when creating artistic images. ART210 is my first art course in my college experience. I have beginners skills in Adobe programs and very limited artistic abilities. However, I expect to gain confidence and skills from this course.
I enjoy baking, cooking, watching movies, and taking my dog on walks. I am hoping this course will develop my artistic side a bit.
Wednesday, February 3, 2016
Sunday, January 31, 2016
5 Possible Companies
Project I:Logo
Healing by Dreaming Foundation
Non-for profit organization that
would connect companies and patients from hospitals and assisted living
homes. Through extended stays in hospitals and constant pain,
patients become depressed and loose fighting spirit. This is when Healing by
Dreaming would come in. It would grant a dream, including a special meal, a
possible day trip (when approved by health provider), a therapy animal
visit, or a spa service. Companies would gain the opportunity to engage
with the community and patients would benefit from a wish. Target market: Long
stay hospitalized patient, geriatric patients, pediatric patient, and seniors
in assisted living homes. Logo idea: Anchor symbol embraced by heart silhouette
FavGift Box
Personalized Gift-box Company that
delivers hand picked objects to a specific person based on a user profile. User
will fill out profiles based on characteristics. and personality of the person
who they intend to give a gift to. Memories or specific dates can be added so
the gift can be appropriately tailored to the end user. Logo idea: Simple
box shape and a heart inside
TechMood Headphones
The product will be headphones with
the ability to detect users’ moods by measuring heart rate. Once the mood is
determined, a specific playlist will begin playing. The product will be
featured in different colors. Earpieces will be designed in two sizes, mini and
full cover. Logo idea, simple shape of a headphone from the side, cord going
around in a circle
Out of School Skype sessions
Cameras that would be installed in
classrooms to offer students the ability to attend virtual classes in real time.
This business idea has the purpose to bring teachers and students closer and to
benefit students who are unable to attend classes due to illness or family
situation.
Healing TechSports
Physical therapy healthcare
provider that uses technology to enhance the quality of therapy services.
Monitors and X-Rays will be used to detect how the body reacts to exercising.
This way the health plan can be tailored to each patient for faster and more
effective recovery. Target market: High performing athletes and patients will
difficult injuries. Logo idea: Human silhouette of person running, holding a
monitor and shadows towards the body
Subscribe to:
Posts (Atom)