merxvell.github.io/homepageV2.js
2016-11-29 20:27:36 -05:00

51 lines
1.3 KiB
JavaScript

$(function(){
//part 1
//on click of an an image that provides links
//images and divs that should do this
//chan, music, school, work
$('#chan').mouseover(function(){
if($('.content').hasClass('active')){
$('.content').removeClass('active').hide();
}
$('#4chanList').addClass('active').show('600');
});
$('#music').mouseover(function(){
if($('.content').hasClass('active')){
$('.content').removeClass('active').hide();
}
$('#musicList').addClass('active').show('600');
});
$('#school').mouseover(function(){
if($('.content').hasClass('active')){
$('.content').removeClass('active').hide();
}
$('#schoolList').addClass('active').show('600');
});
$('#work').mouseover(function(){
if($('.content').hasClass('active')){
$('.content').removeClass('active').hide();
}
$('#workList').addClass('active').show('600');
});
$('#resources').mouseover(function(){
if($('.content').hasClass('active')){
$('.content').removeClass('active').hide();
}
$('#resourceList').addClass('active').show('600');
});
$('#checklist').mouseover(function(){
if($('.content').hasClass('active')){
$('.content').removeClass('active').hide();
}
$('#todoList').addClass('active').show('600');
});
//part 3
//on click leads to a to do list
//todo list should allow addition of tasks
//progress bar
});