Skip to content

Instantly share code, notes, and snippets.

@ravenroc
Last active November 4, 2019 15:30
Show Gist options
  • Save ravenroc/15f2977f89dd9651b466 to your computer and use it in GitHub Desktop.
Save ravenroc/15f2977f89dd9651b466 to your computer and use it in GitHub Desktop.
Random Simpsons Quote [AngularJS]
<section ng-app="simpsonsQuote" ng-controller="randomQuote as quote">
<h1>Random Simpsons Quote</h1>
<blockquote>
{{quote.info.line}}
<cite>{{quote.info.character}}</cite>
<button ng-click="quote.pick()"></button>
</blockquote>
</section>
<footer>
All rights to The Simpsons belong to 20th Century Fox.<br />Quotes used for fun and learning.
</footer>

Random Simpsons Quote [AngularJS]

I'm learning to use some AngularJS, so I made a Simpsons random quote generator. Refresh button spins on hover.

"I am so smart! I am so smart! S-M-R-T! I mean, S-M-A-R-T!" - Homer Simpson

A Pen by Jeremy Paris on CodePen.

License.

(function() {
var app = angular.module('simpsonsQuote', []);
app.controller('randomQuote', function(){
this.info = quotes[Math.floor(Math.random()*quotes.length)];
this.pick = function(){
this.info = quotes[Math.floor(Math.random()*quotes.length)];
};
});
var quotes = [
{
line: "Me fail english? That's unpossible.",
character: "Ralph Wiggum"
},
{
line: "When I grow up, I'm going to Bovine University.",
character: "Ralph Wiggum"
},
{
line: "How can someone with glasses so thick be so stupid.",
character: "Bart Simpson"
},
{
line: "Internet? Is that thing still around?",
character: "Homer Simpson"
},
{
line: "Television! Teacher, mother, secret lover.",
character: "Homer Simpson"
},
{
line: "Oh, so they have internet on computers now.",
character: "Homer Simpson"
},
{
line: "There's no justice like angry-mob justice.",
character: "Principal Skinner"
},
{
line: "Silly customer, you cannot hurt a Twinkie!",
character: "Apu Nahasapeemapetilon"
},
{
line: "What good is money if it can't inspire terror in your fellow man?",
character: "Mr. Burns"
},
{
line: "Ah jeez, can't you people take the law into your own hands?",
character: "Chief Wiggum"
},
{
line: "Shut up, brain. I don't need you any more, I'm popular now.",
character: "Lisa Simpson"
},
{
line: "Hi, everybody!",
character: "Dr. Nick"
},
{
line: "Why do I have the feeling that someday I'll be describing this to a psychiatrist?",
character: "Lisa Simpson"
},
{
line: "Oh my God! The dead have risen and are voting Republican.",
character: "Bart Simpson"
},
{
line: "I have caught word that a child is using his imagination and I've come to put a stop to it.",
character: "Principal Skinner"
},
{
line: "Ack. There is no emoticon to express what I am feeling right now.",
character: "Comic Book Guy"
},
{
line: "I think we'd be all better off if each country had it's own planet.",
character: "Barney Gumble"
},
{
line: "Damnit Smithers. This is brain surgery, not rocket science.",
character: "Mr. Burns"
},
{
line: "Step over this line and say that. I'll kick your butt... at Nintendo.",
character: "Milhouse Van Houten"
},
{
line: "Weaseling out of things is important to learn. It's what separates us from the animals...except the weasel.",
character: "Homer Simpson"
},
{
line: "Fame was like a drug, but what was even more like a drug were the drugs.",
character: "Homer Simpson"
},
{
line: "Uh, no, you got the wrong number. This is 9-1... 2.",
character: "Chief Wiggum"
},
{
line: "It's true, I'm a Rageaholic...I just can't live without Rageahol!",
character: "Homer Simpson"
},
{
line: "I'll keep it short and sweet - Family. Religion. Friendship. These are the three demons you must slay if you wish to succeed in business.",
character: "Mr. Burns."
},
{
line: "You don't like your job, you don't strike. You go in every day and do it really half-assed. That's the American way.",
character: "Homer Simpson"
},
{
line: "I've learned that life is one crushing defeat after another until you just wish Flanders was dead.",
character: "Homer Simpson"
},
{
line: "Hi! I'm Troy McClure. You may remember me from such self help tapes as 'Smoke Yourself Thin' and 'Get Some Confidence, Stupid!'",
character: "Troy McClure"
},
{
line: "This is the greatest case of false advertising I've seen since I sued the movie 'The Never Ending Story.'",
character: "Lionel Hutz"
}
];
})();
@import "compass/css3";
//=== IMPORTS ===
@import url(http://fonts.googleapis.com/css?family=Patrick+Hand|Roboto:400,700);
@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);
//=== VARIABLES ===
$colors: (
gray: #eee,
simpsonsYellow: #ffd90f,
textYellow: #ead520,
black: #333,
sky: #1192f0
);
//=== ANIMATIONS ===
@include keyframes(spin){
from{ @include rotate(0deg); }
to{ @include rotate(360deg); }
}
//=== LAYOUT ===
body {
padding: 3em;
background: map-get($colors, sky);
font-family: "Roboto", sans-serif;
}
h1 {
margin: 1em 0;
font-size: 3em;
text-align: center;
color: map-get($colors, gray);
@include text-shadow(-3px 3px 0px map-get($colors, black));
}
blockquote {
position: relative;
padding: 1.5em;
margin: 0 auto 1em;
width: 75%;
background-color: map-get($colors, textYellow);
border: 2px solid darken(map-get($colors, textYellow), 20);
@include border-radius(1em);
font: 1.5em "Patrick Hand", cursive;
line-height: 1.33em;
@include box-shadow(-5px 5px 0px map-get($colors, black));
cite {
display: block;
margin-top: 0.5em;
text-align: right;
font-size: 0.75em;
&:before{
content: "- ";
}
}
}
button {
@include appearance(none);
position: absolute;
top: -1em;
right: -1em;
cursor: pointer;
display: block;
margin: 0 auto;
font: 1em "Roboto", sans-serif;
padding: 0.5em 0.75em;
@include border-radius(50%);
background: shade(map-get($colors, gray), 25);
border-bottom: 2px solid shade(map-get($colors, gray), 50);
&:before {
content: "\f021";
font-family: 'FontAwesome';
}
&:active, &:focus {
outline: none;
}
&:active, &:hover {
@include animation(spin 1s infinite);
}
}
footer {
margin-top: 3em;
text-align: center;
color: map-get($colors, gray);
font-size: 0.75em;
line-height: 1.5em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment