gpt4 book ai didi

javascript - HTML 演示文稿幻灯片,调整元素大小以保持比例

转载 作者:可可西里 更新时间:2023-11-01 14:52:50 24 4
gpt4 key购买 nike

我对 HTML 很陌生,对 HMTL 术语(也包括英语 :) 不是很流利。我正在尝试创建演示幻灯片(类似于 MS Office 中的 Powerpoint)。功能应该是:

  1. 幻灯片调整大小时,幻灯片内的所有内容(文本、图片等)必须保持相对于幻灯片的位置、大小和比例。
  2. 幻灯片的分辨率为 4:3。
  3. 幻灯片应由 <div> 实现元素。
  4. 幻灯片停留在屏幕中间。
  5. 不应在幻灯片中使用任何内联样式。
  6. 必须使用纯 Javascript、css 和 HTML。

到目前为止,我已经设法设计了这个:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=utf-8" />
<title>
Image Resize Test
</title>
<style type="text/css">
*
{
margin: 0;
}
body
{
background-color: black;
width: 100%;
height: 100%;
}
#wrapper
{
font-size:100%;
background-color: white;
display: block;
position: absolute;
left: 50%;
}
#content
{
font-family:"Times New Roman";
font-size:80%;
}

h1 {font-size:2.5em;}
h2 {font-size:1.875em;}
p {font-size:0.875em;}
</style>
<script>
window.onload = function()
{
window.onresize();
}

window.onresize = function()
{
var width = window.innerWidth;
var height = window.innerHeight;

if (width / 4 > height / 3)
{
width = height / 3 * 4;
}
else
{
height = width / 4 * 3;
}
var wrapper = document.getElementById("wrapper");
wrapper.style.height = height + "px";
wrapper.style.width = width + "px";
wrapper.style.marginLeft = (-width/2) + "px";
wrapper.style.fontSize = (height) + "%";
}
</script>
</head>
<body>
<div id="wrapper">
<div id="content">
<H1>
aaaa
</H1>
<H2>
bbbb
</H2>
<p>cccc</p>
text
</div>
</body>
</html>

这是解决我的问题的好方法,还是有更简单/更有效/更强大或更“专业”的方法来解决这个问题?

没有Javascript能解决吗?至少部分。

有没有办法轻松指定幻灯片中任何元素相对于侧面的 x/y 偏移量(可能作为属性)?

如何为幻灯片元素树中深度可变的元素应用样式?

对于我提出的任何问题,我们将不胜感激。

最佳答案

这与您的基本相同,但没有在 javascript 中显式设置 margin。所以删除该部分并使 margin: 0 auto; 在 wrapper 处。

http://jsfiddle.net/btevfik/VuqJX/


似乎您可以仅使用 css 和 html 来保持宽高比,但据我所知,这仅在您调整窗口宽度时有效。当你改变高度时它不会工作。

Maintain the aspect ratio of a div with CSS

关于javascript - HTML 演示文稿幻灯片,调整元素大小以保持比例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15779742/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com