Pause the animation.
(self)
| 1403 | return self.to_jshtml() |
| 1404 | |
| 1405 | def pause(self): |
| 1406 | """Pause the animation.""" |
| 1407 | self.event_source.stop() |
| 1408 | if self._blit: |
| 1409 | for artist in self._drawn_artists: |
| 1410 | artist.set_animated(False) |
| 1411 | |
| 1412 | def resume(self): |
| 1413 | """Resume the animation.""" |