OSDN Git Service

livePreview ok
[pybbs/pybbs.git] / static / js / main.js
1 var
2 arg = {
3         'font-size':'2em',
4         'transform':'rotate(5deg)'
5 };
6 narg = {
7         'font-size':'initial',
8         'transform':'initial'
9 };
10
11 $(function(){
12         $('div').on('click',function(){
13                 $(this).css(arg);
14         })
15         .on('mouseout',function(){
16                 $(this).css(narg);
17         })
18         .on('mousemove',function(){
19                 $(this).css(narg);
20         });
21 });