11 lines
261 B
JavaScript
11 lines
261 B
JavaScript
|
|
||
|
$(document).ready(function(){
|
||
|
$(".footer>.title").click(function(){
|
||
|
$(".footer>.text").toggleClass("show");
|
||
|
}).hover(function(){
|
||
|
$(".footer>.text").addClass("show");
|
||
|
},function(){
|
||
|
$(".footer>.text").removeClass("show");
|
||
|
});
|
||
|
});
|