@LeoDzhi

Как при нажатии на read more увидеть текст далее?

Нужно скрыть часть текста и с помощью нажатия на read more увидеть его. Есть один нюанс, должна увеличиваться высота той плашки где находится текст, при этом сдвигая остальное ниже.
  • Вопрос задан
  • 152 просмотра
Решения вопроса 1
swert-tech
@swert-tech
Если я вас понял.

Код

<template>
<button v-on:click="read()">Read More</button>

<div v-show="isRead">
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
</template>

<<script>
import { ref } from 'vue'

export default {
    setup () {
        const isRead = ref(false)

        function read () {
            this.isRead = true
        }
        return {
            isRead,
            read
        }
    }
}
</script>

Ответ написан
Комментировать
Пригласить эксперта
Ответы на вопрос 2
FanatPHP
@FanatPHP
Чебуратор тега РНР
spoiler
вот так
Ответ написан
@anton99zel
29а класс средней школы №7
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы