1. ホーム
  2. Web制作
  3. html5

BGMを追加するいくつかの方法をHTML5で簡易実装

2022-01-21 21:35:26

ここで推奨される方法は、<embed> または <audio > の2つのタグを使う方法です。

一般的によく使われる <audio > +css レイアウトでプレーヤーを隠すと、ウェブサイトではより便利です!

import matplotlib.pyplot as plt
from PIL import Image

my_image = 'xxx.jpg'

# Both of the following cases may result in ValueError: source code string cannot contain null bytes
# And the maddening error is in the source code file ImagePalette.py
# "from . import ImageColor, GimpPaletteFile, GimpGradientFile, PaletteFile" code line
image1 = plt.imread(my_image)
image2 = Image.open(my_image)


また、<bgsound>タグもあります。

<bgsound> タグ(IE用

<embed> その他の場合

一般的な使用方法

import matplotlib.pyplot as plt
from PIL import Image

# The only difference is that the image is replaced with a PNG format
my_image = 'xxx.png'

# Both of the following cases may result in ValueError: source code string cannot contain null bytes
image1 = plt.imread(my_image)
image2 = Image.open(my_image)


半日ほどbgsoundをいじりましたが、音が出ませんでした 、考えられる理由: <bgsound > タグはIEカーネルで直接読み込まれないので、em...

解決策:IEカーネル決定時に両方のタグを読み込み、<bgsound>の前に<embed>のタグを置き、自動再生はautostart="false"に設定します。

今回紹介するのは、HTML5でBGMを追加する簡単な方法ですが、もっと関連するHTML5でBGMを追加する内容は、スクリプトハウスの過去の記事を検索するか、次の関連記事を引き続き閲覧してください、今後ともスクリプトハウスをよろしくお願いします!。