如何缩放整个div?
I'm fooling around with a function right now on this page.
If you click the "who" section the div rotates. I'd like it to zoom and consume the page.
Is this possible? How can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
旋转后,将其宽度和高度设置为页面的宽度和高度。
编辑回复:OP的评论
请参阅
.height()
和.width()
。编辑 #2
使用当前的 CSS,您需要缩放
img
。例如,如果您将图像的
height
和width
更改为100%
,那么您只需更改div 的大小
并且图像应该随之缩放。After it rotates, set its width and height to be the width and height of the page.
Edit re: OP's comments
See
.height()
and.width()
.Edit #2
With your current CSS, you need to scale the
img
.If you change, say, the image's
height
andwidth
to be100%
then you only need to change the size of thediv
and the image should scale with it.