Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
officejs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
officejs
Commits
ff610814
Commit
ff610814
authored
May 22, 2014
by
Xiaowu Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add animation gadget
parent
89f44c5c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
173 additions
and
0 deletions
+173
-0
src/audioplayer_animation/animation.css
src/audioplayer_animation/animation.css
+36
-0
src/audioplayer_animation/animation.js
src/audioplayer_animation/animation.js
+107
-0
src/audioplayer_animation/index.html
src/audioplayer_animation/index.html
+30
-0
No files found.
src/audioplayer_animation/animation.css
0 → 100644
View file @
ff610814
#visualizer
{
text-align
:
center
;
}
#visualizer
#canvas
{
margin-top
:
2%
;
position
:
relative
;
}
canvas
#mirror
{
opacity
:
0.5
;
position
:
relative
;
top
:
-66px
;
-webkit-transform
:
scaleY
(
-0.5
);
-moz-transform
:
scaleY
(
-0.5
);
-ms-transform
:
scaleY
(
-0.5
);
transform
:
scaleY
(
-0.5
);
}
div
#mirrorWrapper
{
height
:
150px
;
}
/*
div#mirrorWrapper:after {
display: block;
height: 100px;
width: 25%;
position: relative;
top: -257px;
content: " ";
background: -moz-linear-gradient(top,rgba(39,40,34,0) 0%, rgba(39,40,34,1) 75%);
background: -webkit-linear-gradient(top,rgba(39,40,34,0) 0%, rgba(39,40,34,1) 75%);
background: -o-linear-gradient(top,rgba(39,40,34,0) 0%, rgba(39,40,34,1) 75%);
background: -ms-linear-gradient(top,rgba(39,40,34,0) 0%, rgba(39,40,34,1) 75%);
background: linear-gradient(top,rgba(39,40,34,0) 0%, rgba(39,40,34,1) 75%);
}
*/
src/audioplayer_animation/animation.js
0 → 100644
View file @
ff610814
/*global window, rJS, RSVP, console, document, JSON, Uint8Array */
/*jslint maxlen:80, nomen: true */
(
function
(
window
,
rJS
)
{
"
use strict
"
;
var
gk
=
rJS
(
window
);
function
AnimationClass
(
canvas
,
mirror
)
{
this
.
canvas
=
canvas
;
this
.
mirror
=
mirror
;
this
.
animationPlayId
=
-
1
;
}
AnimationClass
.
prototype
.
play
=
function
()
{
var
that
=
this
,
canvas
=
that
.
canvas
,
mirror
=
that
.
mirror
,
canvasCtx
=
canvas
.
getContext
(
'
2d
'
),
mirrorCtx
=
mirror
.
getContext
(
'
2d
'
),
cwidth
=
canvas
.
width
,
cheight
=
canvas
.
height
-
2
,
meterWidth
=
10
,
//width of the meters in the spectrum
capHeight
=
2
,
meterNum
=
100
,
//count of the meters
capYPositionArray
=
[],
capStyle
=
'
#000
'
,
array
,
drawFrame
,
step
,
i
,
value
,
gradient
=
canvasCtx
.
createLinearGradient
(
0
,
0
,
0
,
300
);
gradient
.
addColorStop
(
1
,
'
#0f0
'
);
gradient
.
addColorStop
(
0.5
,
'
#ff0
'
);
gradient
.
addColorStop
(
0
,
'
#f00
'
);
window
.
cancelAnimationFrame
(
that
.
animationPlayId
);
//stop the previous animation
array
=
[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
];
drawFrame
=
function
()
{
for
(
i
=
0
;
i
<
array
.
length
;
i
+=
1
)
{
array
[
i
]
+=
Math
.
random
()
*
100
;
array
[
i
]
=
array
[
i
]
%
1000
;
}
canvasCtx
.
clearRect
(
0
,
0
,
cwidth
,
cheight
);
step
=
Math
.
round
(
array
.
length
/
meterNum
);
for
(
i
=
0
;
i
<
meterNum
;
i
+=
1
)
{
value
=
array
[
i
*
step
];
if
(
capYPositionArray
.
length
<
Math
.
round
(
meterNum
))
{
capYPositionArray
.
push
(
value
);
}
canvasCtx
.
fillStyle
=
capStyle
;
if
(
value
<
capYPositionArray
[
i
])
{
capYPositionArray
[
i
]
-=
1
;
canvasCtx
.
fillRect
(
i
*
12
,
cheight
-
capYPositionArray
[
i
],
meterWidth
,
capHeight
);
}
else
{
canvasCtx
.
fillRect
(
i
*
12
,
cheight
-
value
,
meterWidth
,
capHeight
);
capYPositionArray
[
i
]
=
value
;
}
canvasCtx
.
fillStyle
=
gradient
;
canvasCtx
.
fillRect
(
i
*
12
,
cheight
-
value
+
capHeight
,
meterWidth
,
cheight
);
//the meter
}
//draw the mirror
mirrorCtx
.
clearRect
(
0
,
0
,
cwidth
,
cheight
);
mirrorCtx
.
drawImage
(
canvas
,
0
,
-
100
,
cwidth
,
cheight
);
that
.
animationPlayId
=
window
.
requestAnimationFrame
(
drawFrame
);
};
that
.
animationPlayId
=
window
.
requestAnimationFrame
(
drawFrame
);
};
AnimationClass
.
prototype
.
stop
=
function
()
{
var
that
=
this
;
window
.
cancelAnimationFrame
(
that
.
animationPlayId
);
//stop the previous animation
};
/*need a animation class, which contents play stop methods */
gk
.
declareMethod
(
'
setAnimation
'
,
function
(
animationClass
)
{
this
.
animation
=
new
AnimationClass
(
this
.
canvas
,
this
.
mirror
);
})
.
declareMethod
(
'
showAnimation
'
,
function
()
{
this
.
animation
.
play
();
})
.
declareMethod
(
'
stopAnimation
'
,
function
()
{
this
.
animation
.
stop
();
});
gk
.
ready
(
function
(
g
)
{
g
.
canvas
=
g
.
__element
.
getElementsByTagName
(
'
canvas
'
)[
0
];
g
.
mirror
=
g
.
__element
.
getElementsByTagName
(
'
canvas
'
)[
1
];
g
.
animation
=
new
AnimationClass
(
g
.
canvas
,
g
.
mirror
);
g
.
animation
.
play
();
});
}(
window
,
rJS
));
src/audioplayer_animation/index.html
0 → 100644
View file @
ff610814
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<title>
animation
</title>
<!-- renderjs -->
<script
src=
"../<%= copy.rsvp.relative_dest %>"
type=
"text/javascript"
></script>
<script
src=
"../<%= copy.renderjs.relative_dest %>"
type=
"text/javascript"
></script>
<!-- custom script -->
<script
src=
"./animation.js"
type=
"text/javascript"
></script>
<link
rel=
"stylesheet"
href=
"../../src/audioplayer_animation/animation.css"
media=
"screen"
></link>
</head>
<body>
<div
id=
"visualizer"
>
<canvas
width=
"400"
height=
"350"
id=
"canvas"
>
!Canvas not supported by your browser
</canvas>
<div
id=
"mirrorWrapper"
>
<canvas
width=
"400"
height=
"250"
id=
"mirror"
></canvas>
</div>
</div>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment