Leonardo Sotelo

Generation

generate functionSun, 23 Apr 2023

funtion to move a button from right to left indefinitely

$(function(){ $('.btn-primary').click(function(){ var $target = $('#i1'), speed = 500; $target.animate({ left: '-=30%' }, speed); $target.animate({ left: '+=30%' }, speed); }); });

Javascript
Generate More

Want to kickstart your project?Use the new AI Studio to create your code