如何在 HTML 页面中使用动画图像?


HTML 页面中的动画图像是会在网页上移动的图像。它采用 GIF 格式,即图像交换格式文件。

我们需要使用带有src 属性的<image> 标签在 HTML 中添加动画图像。src 属性添加图像 URL(文件目标)。

我们还可以使用heightwidth 属性设置图像的高度宽度

语法

<image src=”Animated image”>

示例 1

以下是显示如何在 HTML 页面中使用动画图像的示例 −

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="description" content="meta tag in the web document"> <meta name="keywords" content="HTML,CSS"> <meta name="author" content="lokesh"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <p>Adding Animated Images to the web page</p> <img src="https://tutorialspoint.com/images/html.gif"> </body> </html>

示例 2

可以尝试运行以下内容来使用 HTML 中的动画图像 −

<!DOCTYPE html> <html> <head> <title>Animated Image</title> </head> <body> <h1>Animated Image</h1> <img src="https://media.giphy.com/media/3o6UBpHgaXFDNAuttm/giphy.gif"> </body> </html>

示例 3

我们可以使用样式表更改动画图像的高度和宽度。

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="description" content="meta tag in the web document"> <meta name="keywords" content="HTML,CSS"> <meta name="author" content="lokesh"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <p> dding Animated Images to the web page</p> <img src="https://tutorialspoint.com/images/html.gif" height="200" width="200"> </body> </html>

更新于: 02-09-2023

50K+ 浏览量

开启您的 职业 生涯

完成课程,获得认证

开始
广告
© . All rights reserved.