Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
336
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
d3a05463
Commit
d3a05463
authored
7 years ago
by
こぴなたみぽ
Browse files
Options
Downloads
Patches
Plain Diff
wip
parent
dd724b60
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/web/app/desktop/views/components/analog-clock.vue
+42
-29
42 additions, 29 deletions
src/web/app/desktop/views/components/analog-clock.vue
with
42 additions
and
29 deletions
src/web/app/desktop/
-tag
s/analog-clock.
tag
→
src/web/app/desktop/
views/component
s/analog-clock.
vue
+
42
−
29
View file @
d3a05463
<mk-analog-clock>
<canvas ref="canvas" width="256" height="256"></canvas>
<style lang="stylus" scoped>
:scope
> canvas
display block
width 256px
height 256px
</style>
<script lang="typescript">
const Vec2 = function(x, y) {
this.x = x;
this.y = y;
};
<
template
>
<canvas
class=
"mk-analog-clock"
ref=
"canvas"
width=
"256"
height=
"256"
></canvas>
</
template
>
<
script
lang=
"ts"
>
import
Vue
from
'
vue
'
;
import
{
themeColor
}
from
'
../../../config
'
;
this.on('mount', () =>
{
this.
draw()
this.
clock = setInterval(this.draw, 1000)
;
})
;
const
Vec2
=
function
(
x
,
y
)
{
this
.
x
=
x
;
this
.
y
=
y
;
}
;
this.on('unmount', () => {
clearInterval(this.clock);
});
export
default
Vue
.
extend
({
data
()
{
return
{
clock
:
null
};
},
mounted
()
{
this
.
tick
();
this
.
clock
=
setInterval
(
this
.
tick
,
1000
);
},
beforeDestroy
()
{
clearInterval
(
this
.
clock
);
},
methods
:
{
tick
()
{
const
canv
=
this
.
$refs
.
canvas
as
any
;
this.draw = () => {
const
now
=
new
Date
();
const
s
=
now
.
getSeconds
();
const
m
=
now
.
getMinutes
();
const
h
=
now
.
getHours
();
const ctx =
this.$refs.
canv
as
.getContext('2d');
const canvW =
this.$refs.
canv
as
.width;
const canvH =
this.$refs.
canv
as
.height;
const
ctx
=
canv
.
getContext
(
'
2d
'
);
const
canvW
=
canv
.
width
;
const
canvH
=
canv
.
height
;
ctx
.
clearRect
(
0
,
0
,
canvW
,
canvH
);
{
// 背景
...
...
@@ -72,7 +77,7 @@
const
length
=
Math
.
min
(
canvW
,
canvH
)
/
4
;
const
uv
=
new
Vec2
(
Math
.
sin
(
angle
),
-
Math
.
cos
(
angle
));
ctx
.
beginPath
();
ctx.strokeStyle =
_THEME_COLOR_
;
ctx
.
strokeStyle
=
themeColor
;
ctx
.
lineWidth
=
2
;
ctx
.
moveTo
(
canvW
/
2
-
uv
.
x
*
length
/
5
,
canvH
/
2
-
uv
.
y
*
length
/
5
);
ctx
.
lineTo
(
canvW
/
2
+
uv
.
x
*
length
,
canvH
/
2
+
uv
.
y
*
length
);
...
...
@@ -90,6 +95,14 @@
ctx
.
lineTo
(
canvW
/
2
+
uv
.
x
*
length
,
canvH
/
2
+
uv
.
y
*
length
);
ctx
.
stroke
();
}
};
</script>
</mk-analog-clock>
}
}
});
</
script
>
<
style
lang=
"stylus"
scoped
>
.mk-analog-clock
display block
width 256px
height 256px
</
style
>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment