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

test 2 hand tiles

parent af51be59
<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%);
......
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