从转录的PDF文件缩放HTML [英] Scaling HTML from transcribed PDF files

查看:112
本文介绍了从转录的PDF文件缩放HTML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一些PDF文件转换为HTML。我完全明白,这不是理想,但这不是我可以改变。

I have a few PDF files that were converted to HTML. I fully understand that this isn't ideal, but that's not something I can change.

问题是,它会将内容放置在非常具体的点,从而打破了移动设备的响应能力。

The issue is that it places content at very specific points which breaks mobile responsiveness.

看起来像这样:

<div class="pc pc1 w0 h0">

<div class="t m0 x0 h2 y1 ff1 fs0 fc0 sc0 ls0 ws0">Text</div>
</div>

CSS文件如下:

@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:168.000000px;}
.y0{bottom:781.000000px;}
.h0{height:841.889770px;}
.w0{width:595.275630px;}
.x0{left:34.000000px;}
}

有可能以某种方式使它缩放吗?

Is it possible to somehow make it scale? I'd even be happy(-ier) if I could just apply a media query to reduce everything in size by 20%.

推荐答案

通过使用媒体查询可以看起来像这样

By using media query it could look like this

.outer {
  height: 500px;
  width: 800px;
  background: red;
  transform-origin: 0 0;
}

@media screen and (max-width: 1000px) {
   .outer {
     transform: scale(0.9);
   }
}
@media screen and (max-width: 900px) {
   .outer {
     transform: scale(0.8);
   }
}
@media screen and (max-width: 800px) {
   .outer {
     transform: scale(0.7);
   }
}
height: 400px;
width: 600px;
}

<div class="outer"></div>

这篇关于从转录的PDF文件缩放HTML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆