如何使用jquery缩放带有背景图像的内容

How to zoom content with background image using jquery?

本文关键字:图像 背景 何使用 jquery 缩放      更新时间:2023-09-26

我有一个<div>,其内容包括文本和背景图像。

如何通过选择内容来缩放<div>
(缩放文本和背景图像)

感谢您的帮助!

在特定事件中使用 添加特定类 并在该 CSS 属性中写入 transform:scale(6);

请参考 JS 小提琴演示 http://jsfiddle.net/swfour/ope432pL/1/

setTimeout(function () { $('.intro_bg').addClass('zout'); }, 1000);

在 CSS 中写入.intro_bg.zout { transform:scale(6); }