I have amp-state like this:
<amp-state id="smartBannerData">
<script type="application/json">
{
"0": {
"imgSrc": "https://cdn.voicetube.com/assets/img/banners/smartbanner-jp-20200116.jpg"
},
"1": {
"imgSrc": "https://cdn.voicetube.com/assets/img/banners/smartbanner-branding-jp.jpg"
}
}
</script>
</amp-state>
<amp-img
alt=""
src="https://cdn.voicetube.com/assets/img/banners/smartbanner-jp-191205.png"
width="500"
height="100"
layout="responsive"
[src]="smartBannerData[currentImg].imgSrc"
>
</amp-img>
<button on="tap:AMP.setState({currentImg: '0'})">1</button>
<button on="tap:AMP.setState({currentImg: '1'})">2</button>
If I click the buttons, the image will change dynamically. I want to change the imgSrc in random when the page is loaded:
<amp-script script="smart-banner">
<p>
test
</p>
</amp-script>
<script id="smart-banner" type="text/plain" target="amp-script">
setTimeout(function(){ AMP.setState({currentImg: '1'}); }, 2000)
</script>
but the image won't change.. I am a newhand of AMP , could somebody help me to figure out the problem?