0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

manimの作法 その41

Posted at

#概要

manimの作法、調べてみた。
BackgroundRectangle使ってみた。

#サンプルコード

from manimlib.imports import *

class test(Scene):
	def construct(self):
		src = r'''菅義偉首相は、自助を中心に据えた社会作りを
提唱するが、人々の生活は、自助では成り立たない程、
追い詰められている。
貧富の差が拡大する今は、公助の役割こそが
求められている時代である。
'''
		text = Text(src, font = 'IPAGothic')
		self.add_sound('20210106112815.wav')
		bg = BackgroundRectangle(text, color = WHITE, fill_opacity = 0.85, buff = 0.25)
		self.play(FadeInFromDown(bg), *[FadeInFromDown(each) for each in text], run_time = 3, lag_ratio = 0.5)
		self.wait()



#生成した動画

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?