简介:有时我们有很多内容要显示,为了使网站看起来漂亮而简短,我们会使用可折叠的文本框。可折叠文本框是标题和内容组合的划分,通常只有标题可见,但当它被点击时显示内容。
设置:
- 您必须在标题中导入 amp-accordion 组件才能使用此标签。
- 为了制作动态标题,我们使用下面提到的CSS 代码。每当分区展开或折叠时,此代码将动态更改标题的内容。
amp-accordion section[expanded] .show-more {
display: none;
}
amp-accordion section:not([expanded]) .show-less {
display: none;
}
例子:
GeeksForGeeks | amp-accordion
Geeks For Geeks
Click it Geek!!
Welcome to GeeksForGeeks
GeeksforGeeks is a Computer Science portal for geeks.
It contains well written, well thought and well explained
computer science and programming articles, quizzes etc.
输出: