如何在Firemonkey移动应用程序中更改网页的字体大小

时间:2017-07-09 13:22:52

标签: delphi firemonkey delphi-10.1-berlin twebbrowser

我正在使用Delphi 10.1为iOs和Android开发移动应用程序。我创建了具有TwebBrowser组件的移动应用程序,在此我加载了网页,在其中我有下面提到的代码:

<head>
<style>  
body 
@font-face {
font-family: MyFont;
src: url('BOOKOS.ttf')
}
                  div {  
                  background: transparent;  
                  color: #f2e9e3;  
                  text-align:justify;
                  font-family:MyFont;
                  font-size:17;
                  }  
                  div.padded {  
                  padding-top: 10px;  
                  padding-right: 10px;  
                  padding-bottom: 0.25in;  
                  padding-left: 10px;  
                  }  
                  a:link {
                  COLOR: #f2e9e3;
                  }
                  a:visited {
                  COLOR: #f2e9e3;
                  }
                  a:hover {
                  COLOR: #f2e9e3;
                  }
                  a:active {
                  COLOR: #f2e9e3;
                  }
                  </style>  
                  </head>  

目前,网页内设置了网页字体。我们有配置设置,用户可以在其中指定字体大小。那么,我怎样才能改变网页的字体大小?

0 个答案:

没有答案