我有一个带有以下代码的简单 html:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="English">
<head>
<link href="../Styles/design.css" rel="stylesheet" type="text/css" />
<title>Image</title>
<style type="text/css">
@page
{
margin: 0;
padding: 0;
}
</style>
</head>
<body style="margin: 0; padding: 0; oeb-column-number: 1;">
<div style="width: 100%; height: 100%; margin: 0; padding: 0; text-align: center;"><img alt="main" id="mainImage" src="../images/Image.jpg" style="height: 100%; max-width: 100%; max-height: 100%; padding: 0; margin: 0;" /></div>
</body>
</html>
在一个文件夹中我有Image.jpg
文件
是否可以使用 Objective-C 添加 css 规则并更改img
标签的宽度和高度?请帮我。
我尝试了这段代码,但它对我不起作用。
NSString *setImageRule = [NSString stringWithFormat:@"addCSSRule('img', 'max-width: %fpx; height: %fpx;')", self.webView.frame.size.width*0.75,self.webView.frame.size.height*0.75];
[webView stringByEvaluatingJavaScriptFromString:setImageRule];