Amp html 如何在amp Story player中初始激活任何Web故事

Amp html 如何在amp Story player中初始激活任何Web故事,amp-html,amp-story,Amp Html,Amp Story,假设我有3个Web故事要嵌入到一个网页中,并且我希望在一个查看器中有多个Web故事。 我会用 <amp-story-player style="width: 360px; height: 600px;"> <a href="https://www.example.com/story1.html" style="--story-player-poster: url('https://www.example.com/assets/cover1.html');">

假设我有3个Web故事要嵌入到一个网页中,并且我希望在一个查看器中有多个Web故事。 我会用

<amp-story-player style="width: 360px; height: 600px;">
    <a href="https://www.example.com/story1.html" style="--story-player-poster: url('https://www.example.com/assets/cover1.html');">
        Story 1.
    </a>
    <a href="https://www.example.com/story2.html" style="--story-player-poster: url('https://www.example.com/assets/cover2.html');">
        Story 2 **Want to activate this story initially**
    </a>
    <a href="https://www.example.com/story3.html" style="--story-player-poster: url('https://www.example.com/assets/cover3.html');">
        Story 3
    </a>
</amp-story-player>

但最初,当amp Story player在页面上呈现时,它会激活Story 1

那么,是否有任何方法可以首先激活故事2?

如果想要查看故事1/故事3,用户将向左/向右滑动

谢谢