Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
projet-cdaw
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Quentin Vrel
projet-cdaw
Commits
e1a2b9a5
Commit
e1a2b9a5
authored
Dec 03, 2020
by
quentin.vrel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test 2 hand tiles
parent
af51be59
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
9 deletions
+18
-9
Tile.vue
frontend/src/components/Tile.vue
+18
-9
No files found.
frontend/src/components/Tile.vue
View file @
e1a2b9a5
<
template
>
<
template
>
<div
class=
"tile"
>
<div
class=
"tile"
>
<
button
class=
"tile-symbol"
:id=
"this.tile.idobject"
>
<
div
class=
"tile-symbol"
:id=
"this.tile.idobject"
>
<img
class=
"tile-background"
:src=
"this.background"
:width=
"this.width"
:height=
"this.height"
/>
<img
class=
"tile-background"
:src=
"this.background"
:width=
"this.width"
:height=
"this.height"
/>
<img
class=
"tile-front"
:src=
"this.svg"
:width=
"this.width"
:height=
"this.height"
/>
<!--img class="tile-background" :src="this.background" :width="this.width" :height="this.height"/-->
</button>
<svg-button
class=
"tile-front"
:svg=
"this.svg"
:width=
"this.width"
:height=
"this.height"
/>
</div>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
import
Tile
from
'@/model/Tile.js'
import
Tile
from
'@/model/Tile.js'
import
SvgButton
from
'./SvgButton.vue'
;
export
default
{
export
default
{
components
:
{
SvgButton
},
props
:
{
props
:
{
id
:
Number
,
id
:
Number
,
width
:
{
type
:
[
Number
,
String
],
default
:
80
},
width
:
{
type
:
[
Number
,
String
],
default
:
80
},
...
@@ -34,18 +37,24 @@ export default {
...
@@ -34,18 +37,24 @@ export default {
</
script
>
</
script
>
<
style
>
<
style
>
.tile
{
height
:
1px
;
}
.tile-symbol
{
.tile-symbol
{
width
:
50%
;
height
:
1px
;
border-radius
:
10px
;
border-radius
:
10px
;
background
:
transparent
;
background
:
transparent
;
border
:
none
;
border
:
none
;
display
:
contents
;
display
:
inline-block
;
}
.tile-background
{
display
:
inline-block
;
}
}
.tile-front
{
.tile-front
{
display
:
table-caption
;
margin
:
0
;
padding
:
0
;
transform
:
translateX
(
-100%
);
display
:
inline-block
;
-webkit-transform
:
translateX
(
-100%
);
transform
:
translateY
(
-100%
);
transform
:
translateY
(
-100%
);
-webkit-transform
:
translateY
(
-100%
);
-webkit-transform
:
translateY
(
-100%
);
...
...
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