
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<template>
<div id="Chapter1_1" class="content-wrap">
<div class="title-box mb25 flex align-center mt40">
<span class="title mr40">1. Hello WORLD</span>
<span class="subtitle">my name is dd</span>
</div>
<div class="flex justify-between align-center">
<div class="pre-btn" @click="goToPage('Chapter2_6')"><img src="../../../../resources/img/left.png" alt=""></div>
<div class="content title-box">
<p class="title mt25 title-bg">앗! 다리가 무너져서 건널 수가 없어! 다리 조각을 옮겨줘!</p>
<p class="subtitle2 "></p>
<div class="mt50 text-ct flex justify-center" style="gap: 80px;">
<div class="dropGroup flex align-center justify-center mt30">
<div class="flex" style="gap: 20px; position: relative;" >
<img src="../../../../resources/img/img70_39s.png" alt="">
<div class="textbox">
<p style=" left: 247px;
bottom: 49px;">1</p>
<p style=" left: 396px;
bottom: 97px;">2</p>
<p style=" left: 530px;
bottom: 179px;">3</p>
</div>
</div>
</div>
<div class="dragGroup mt40">
<div>
<button><img src="../../../../resources/img/img71_39s.png" alt=""><p>a</p></button>
<button><img src="../../../../resources/img/img71_39s.png" alt=""><p>b</p></button>
<button><img src="../../../../resources/img/img71_39s.png" alt=""><p>c</p></button>
</div>
</div>
</div>
</div>
<div class="next-btn" @click="goToPage('Chapter2_8')"><img src="../../../../resources/img/right.png" alt=""></div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
goToPage(page) {
this.$router.push({ name: page });
}
},
watch: {
},
computed: {
},
components: {
},
mounted() {
}
}
</script>
<style scoped>
.textbox p{position: absolute; }
.dragGroup button{display: block;}
.dragGroup button p, .textbox p{ width: fit-content;
height: fit-content;
background: #ffffffb8;
border-radius: 5px;
padding: 10px;
font-size: 30px; font-family: 'ONEMobilePOP';}
</style>