-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunc.js
More file actions
executable file
·28 lines (21 loc) · 754 Bytes
/
func.js
File metadata and controls
executable file
·28 lines (21 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
function zoomInText(baba){
$(baba).css("font-size", "+=0.5em");
}
function zoomOutText(baba){
$(baba).css("font-size", "-=0.5em")
}
//MODAL DIALOG J_QUERY-PLUGIN
$("img").hover(function(){
$("img").css("webkit-filter", "blur(0.8px)");
$(this).css("webkit-filter", "blur(0px)")
},
function(){
$("img").css("webkit-filter", "blur(0px)");
});
$("h2").hover(function(){
$(this).css("font-size", "+=0.02em");
},
function(){$(this).css("font-size", "-=0.02em");
$("body").css("webkit-filter", "blur(0px)");});
$(".item").hover(function(){$(this).css("font-size", "+=0.02em")},
function(){$(this).css("font-size", "-=0.02em")});