如何使用javascript旋转iFrame?

时间:2015-11-16 03:15:48

标签: javascript iframe rotation

我有一个iFrame:

    <div class="embed-responsive embed-responsive-16by9">
       <iframe id="camera_view" class="embed-responsive-item container well well-small span6" style="height: 720px; width: 1280px; background-color: #2e2e2e;" src="www.google.com">
       </iframe>
    </div>

如何使用javascript旋转?

注意:我正在使用Bootstrap for CSS。 jQuery for javascript。

1 个答案:

答案 0 :(得分:3)

css3中有transform属性

#camera_view {
  transform: rotate(45deg);
}

希望有所帮助