Skip to content

Instantly share code, notes, and snippets.

@kived
Created September 5, 2014 16:39
Show Gist options
  • Select an option

  • Save kived/38dbd08513b5e43a6666 to your computer and use it in GitHub Desktop.

Select an option

Save kived/38dbd08513b5e43a6666 to your computer and use it in GitHub Desktop.
kivy gif test
import kivy
kivy.require('1.8.1')
from kivy.app import App
from kivy.lang import Builder
root = Builder.load_string('''
Image:
#source: 'Newtons_cradle_animation_book_2.gif'
source: 'flies2.gif'
anim_delay: 0.1
''')
class TestApp(App):
def build(self):
return root
if __name__ == '__main__':
TestApp().run()
@SuperMissBeautyQueen
Copy link

Not working , gif image is not showing. What should do???

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment