beanymanuk Posted August 31, 2012 Share Posted August 31, 2012 Hi I'm trying to find out how to do the effect when the circle expands when clocking on the pause symbol Anyone seen this out there anywhere in a tutorial or code example http://lab.simurai.com/zen-player/ Quote Link to comment https://forums.phpfreaks.com/topic/267848-looking-for-a-circle-effect/ Share on other sites More sharing options...
nogray Posted September 1, 2012 Share Posted September 1, 2012 The example just change the image, you can create two images one play and one pause and add a click event to change them <img src="play.png" onclick="if (this.src.indexOf('play.png') != -1) this.src = 'pause.png'; else this.src = 'play.png';" /> Quote Link to comment https://forums.phpfreaks.com/topic/267848-looking-for-a-circle-effect/#findComment-1374455 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.