L
L
LeoDzhi2020-12-17 12:16:47
Vue.js
LeoDzhi, 2020-12-17 12:16:47

How can I see the next text when I click on read more?

You need to hide part of the text and by clicking on read more you can see it. There is one caveat, the height of the plate where the text is located should increase, while shifting the rest below.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
S
Swert, 2020-12-25
@LeoDzhi

If I understand you.

The code

<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>

F
FanatPHP, 2020-12-17
@FanatPHP

spoiler
вот так

A
Anton, 2020-12-17
@anton99zel

jQuery .toggle() method

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question