在 HTML 中创建倾斜缩放反射的方法

发布于 2024-12-19 00:09:47 字数 786 浏览 0 评论 0原文

我必须解析 XML 文档&为我找到的每个实例元素创建一个 HTML 元素。

我需要创建一个 img,其中它的反射 并且只有它的反射而不是图像 有倾斜和倾斜。已缩放。这意味着我不能去:

img.style.WebkitTransform = "scale(0.26) skew(-1deg)"; // this will make the image scale & skew also

你能建议一种最有效的方法/技术吗?创建缩放比例的最简单方法img 元素的倾斜反射?

其中哪一个最好(尽管如果您有更好的想法,我很想听听:)):
- 在实际图像下方创建另一个 HTML img,然后调整其样式以使其上下颠倒、缩放和缩放。倾斜。
- 使用服务器端语言(C#)将反射创建为.png
- 使用我不知道的 CSS3 技术/方法?
- 使用 HTML5 画布创建图像和图像缩放后的倾斜反射?这是一个仅适用于 iPad 的 Web 应用程序,因此与浏览器 HTML5 兼容性无关。

这是我解析的 XML 文件的示例:

<instance type="ImageBox" width="439" height="292" top="153" left="460" tReflectionEnabled="true" tReflectionScale="0.26" tReflectionAlpha="0.18" tReflectionSkew="-1"/>

I have to parse an XML document & create a HTML element for every instance element I find.

I need to create a img where its reflection AND ONLY its reflection not the image has a skew & is scaled. This means that I just cannot go:

img.style.WebkitTransform = "scale(0.26) skew(-1deg)"; // this will make the image scale & skew also

Can you suggest a way/technique that would be the most efficient & easiest way to create a scaled & skewed reflection of an img element?

Which of these would be best(although if you have better ideas I'd love to hear them :)):
- Create another HTML img below the actual image then adjust its style to make it upside down, scaled & skewed.
- Use a server side language(C#) to create the reflection as a .png
- Use CSS3 techniques/ways I dont know about?
- Use HTML5 canvas to create both the image & the scaled skewed reflection? This is a web application SOLELY for the iPad so it doesn't matter about browser-HTML5 compatibility.

This is an example of the XML file I parse:

<instance type="ImageBox" width="439" height="292" top="153" left="460" tReflectionEnabled="true" tReflectionScale="0.26" tReflectionAlpha="0.18" tReflectionSkew="-1"/>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

他是夢罘是命 2024-12-26 00:09:47

jQuery:

$("img").each(function() {
    $(this).wrap('<div class="imgWrap" />');
    $(this).after($(this).clone().addClass("imgCopy"));
});

CSS:

.imgCopy { -webkit-transform:scale(.26) skew(-1deg); }

我对此进行了测试,它可以在 iPad 上的 iOS 模拟器中运行。

演示

jQuery:

$("img").each(function() {
    $(this).wrap('<div class="imgWrap" />');
    $(this).after($(this).clone().addClass("imgCopy"));
});

CSS:

.imgCopy { -webkit-transform:scale(.26) skew(-1deg); }

I tested this and it works in the iOS simulator with the iPad.

Demo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文