Jump to content

Breathing effect


pjau
 Share

Recommended Posts

Hi guys.

So I have an image which I currently increase and decrease in size via a timer, but currently it increases the height at the top and the bottom. I only want to increase the height at the top.

function updateBreathing() {
	counter += 1;
	if (counter <= 10) {
		myimage.height -= 1;
	} else {
		myimage.height += 1;
		if (counter == 20) {
			counter = 0;
		}
	}
}

Any help would be great! :)

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...