0
私はこの要素を持っており、ページを開くとアニメーション化されます。ポリマーネオンアニメーションでビューポートに可視の要素をアニメ化
<dom-module id="intro-el">
<template>
<style>
:host {
display: block;
}
iron-image{
width:500px;
height: 400px;
width:100%;
}
</style>
<div >
<h1 id="animateH1">Test Title</h1>
<p id="animateP">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Facilis reiciendis distinctio nulla sint.</p>
<iron-image id="animateImg"src="/images/auto/some.png" preload sizing="contain"></iron-image>
</div>
</template>
<script>
Polymer({
is: 'intro-el',
behaviors: [
Polymer.NeonAnimationRunnerBehavior
],
properties: {
animationConfig: {
value: function(){
return{
'entryH1': [{
name: 'slide-from-bottom-animation',
node: this.$.animateH1,
timing: {delay: 450}
}
],
'entryP': [{
name: 'slide-from-left-animation',
timing: {delay: 650},
node: this.$.animateP
}
],
'entryImg': [{
name: 'slide-from-right-animation',
node: this.$.animateImg
}
]
}
}
}
},
ready: function(){
this.playAnimation('entryH1');
this.playAnimation('entryP');
this.playAnimation('entryImg');
},
});
</script>
</dom-module>
私がしたいことは、要素がスクロールして表示されるときにアニメーション化することです。ビューにスクロールするときに要素を聴く方法はありますか、実装できる動作がありますか?どうもありがとうございました!