Very basic stuff, but im still struggling with javascript.
I have this lottie animation, which is not svg.
<script src="/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player src=".json" background="transparent" speed="1" style="width: 300px; height: 300px;" controls></lottie-player>
<button id="start">START</button>
<button id="stop">STOP</button>
Very basic stuff, but im still struggling with javascript.
I have this lottie animation, which is not svg.
<script src="https://unpkg./@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player src="https://assets2.lottiefiles./packages/lf20_6gduajmo.json" background="transparent" speed="1" style="width: 300px; height: 300px;" controls></lottie-player>
<button id="start">START</button>
<button id="stop">STOP</button>
My goal is to have a button(#start) to start the animation and play it one time, then remain in the last frame. Second button(#stop) should either jump immediately to the first frame of the animation or simply revert it and remain in the first frame.
It's basically the same functionality as the standard lottie controls. But I need the button to control something else as well, and I don't want the timeline of lottie controls.
I tried to fiddle with this Codepen, and insert my file, but I didn't manage to work it out.
Share Improve this question edited May 27, 2022 at 14:21 Shawn Carrié 214 bronze badges asked Jun 1, 2021 at 15:28 allegriallegri 1892 gold badges2 silver badges12 bronze badges 02 Answers
Reset to default 7You can use methods play()
and stop()
on lottie by declaring each method inside the event of the corresponding button.
To hide the standard navigation bar remove attribute controls
in tag lottie-player
.
You can read in detail here.
let player = document.querySelector("lottie-player");
let play = document.querySelector("#start");
let stop = document.querySelector("#stop");
play.onclick = function () {
player.play();
};
stop.onclick = function () {
player.stop();
};
<script src="https://unpkg./@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player src="https://assets2.lottiefiles./packages/lf20_6gduajmo.json" background="transparent" speed="1" style="width: 300px; height: 300px;"></lottie-player>
<button id="start">START</button>
<button id="stop">STOP</button>
In this example I leave it up to JQuery to start/stop the lottie animation:
$('#start').click(function(){
$('lottie-player').get(0).play();
});
$('#stop').click(function(){
$('lottie-player').get(0).stop();
});
You need to use .get(0)
to run play/stop on an HTML object, not the JQuery object.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743694115a4491460.html
评论列表(0条)