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_10')"><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">
<div class="imgGroup flex align-start justify-center mt30">
<img src="../../../../resources/img/img87_43s.png" alt="">
<div class="inputGroup" >
the dog <input type="text" name="" id="">
</div>
</div>
<div class="pickGroup mt40">
<article class="flex justify-center" style="gap: 60px; bottom: 159px;
left: 242px;">
<div class="flex">
<button><img src="../../../../resources/img/img136_71s.png" alt="">
<p>1</p>
</button>
<p>a</p>
</div>
</article>
<article class="flex justify-center" style="gap: 60px; bottom: 159px;
right: 559px;">
<div class="flex">
<button><img src="../../../../resources/img/img136_71s.png" alt="">
<p>2</p>
</button>
<p>a</p>
</div>
</article>
</div>
</div>
</div>
<div class="next-btn" @click="goToPage('Chapter2_12')"><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>
.pickGroup button {
position: relative;
margin-right: 30px;
}
.pickGroup button p {
font-size: 34px;
color: #c6c6c6;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.pickGroup article{position: absolute;}
.pickGroup article img{object-fit: contain; width: -webkit-fill-available;}
.pickGroup article >div >p {
font-size: 64px;
}
</style>