Commit e1a2b9a5 authored by quentin.vrel's avatar quentin.vrel

test 2 hand tiles

parent af51be59
<template>
<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-front" :src="this.svg" :width="this.width" :height="this.height"/>
</button>
<!--img class="tile-background" :src="this.background" :width="this.width" :height="this.height"/-->
<svg-button class="tile-front" :svg="this.svg" :width="this.width" :height="this.height"/>
</div>
</div>
</template>
<script>
import Tile from '@/model/Tile.js'
import SvgButton from './SvgButton.vue';
export default {
components: { SvgButton },
props: {
id: Number,
width: { type: [Number, String], default: 80 },
......@@ -34,18 +37,24 @@ export default {
</script>
<style>
.tile {
height: 1px;
}
.tile-symbol{
width: 50%;
height: 1px;
border-radius: 10px;
background: transparent;
border: none;
display: contents;
display: inline-block;
}
.tile-background{
display: inline-block;
}
.tile-front{
display: table-caption;
transform: translateX(-100%);
-webkit-transform: translateX(-100%);
margin: 0;
padding: 0;
display: inline-block;
transform: translateY(-100%);
-webkit-transform: translateY(-100%);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment