This is the site we had to recreate. The big picture is actually supposed to be a jQuery function to make it disappear.
This is my version. I still could fix some things to make it exact, but I need to move on to the optional jQuery assignment and databases. The margins and padding on the far right could be moved to the exact spot. Something that I could not fix was the height of the borders. I wanted to match the size of the font on the lists, but padding top/bottom would not do the trick.
This is the jQuery function I used to make the main picture disappear. The picture has the id of #away.
$(document).ready(function() {
$("#away").click(function(){
$(this).hide();
});
});
This was a little rushed because I have 2 minutes to send it in..
- Kyle
No comments:
Post a Comment