You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
626 B
32 lines
626 B
1 month ago
|
<template>
|
||
|
<view >
|
||
|
<image class="background_dictionary" src="/static/homepages/homes/dictionary/pictures/banana.png" ></image>
|
||
|
<image class="button_dictionary" src="/static/homepages/homes/dictionary/pictures/button.png" ></image>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss">
|
||
|
.background_dictionary{
|
||
|
position: absolute; /* 绝对定位 */
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
top: 0%;
|
||
|
left: 0%; /* 水平居中 */
|
||
|
}
|
||
|
.button_dictionary{
|
||
|
position: absolute; /* 绝对定位 */
|
||
|
width: 3%;
|
||
|
height: 3%;
|
||
|
top: 7%;
|
||
|
left: 7%; /* 水平居中 */
|
||
|
}
|
||
|
</style>
|