摘要: 引入下方的jquery.rotate.js文件,然后通过$("选择器").rotate(角度);可以旋转任意角度, 例如$("#rotate-image").rotate(45);把这句放在$(document).ready(function(){ });中 就是将id为rotate-image的图片旋转45度。 不过,貌似在Chrome中总是不显示。 唉,找了两个小时,才发现Chrome太坑爹了,没法获取图片的长宽。 解决办法是,把$("#rotate-image").rotate(45);放在 $(window).load(function(){ });中,因为在Chrome中图片在执行$(document).ready(function(){ });中的语句时并没有加载完图片,坑爹啊。 另外可以更方便的通过调用$("选择器").rotateRight()和 阅读全文
posted @ 2015-05-28 17:47 豫见世家公子 阅读(1804) 评论(0) 推荐(0) 编辑