我有小提琴http://jsfiddle.net/7owj48qt/,但我不能在Jsfiddle外面工作。有什么想法吗?
HTML:
<img id="preload1" style="transition: all 2400ms;" src="https://cdn2.iconfinder.com/data/icons/windows-8-metro-style/512/wheel.png" data-rotate="600" height="40%" width="40%" />
<img id="preload1" style="transition: all 2400ms;" src="https://cdn2.iconfinder.com/data/icons/windows-8-metro-style/512/wheel.png" data-rotate="1000" height="40%" width="40%" />
SCRIPT:
$('img').each(function () {
var deg = $(this).data('rotate') || 0;
var rotate = 'rotate(' + $(this).data('rotate') + 'deg)';
$(this).css({
'-webkit-transform': rotate,
'-moz-transform': rotate,
'-o-transform': rotate,
'-ms-transform': rotate,
'transform': rotate
});
});
答案 0 :(得分:1)
使用它:
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.3.min.js" ></script>
<img id="preload1" style="transition: all 2400ms;" src="https://cdn2.iconfinder.com/data/icons/windows-8-metro-style/512/wheel.png" data-rotate="600" height="40%" width="40%" />
<img id="preload1" style="transition: all 2400ms;" src="https://cdn2.iconfinder.com/data/icons/windows-8-metro-style/512/wheel.png" data-rotate="1000" height="40%" width="40%" />
<script>
$(window).on("load", function(){
$('img').each(function () {
var deg = $(this).data('rotate') || 0;
var rotate = 'rotate(' + $(this).data('rotate') + 'deg)';
$(this).css({
'-webkit-transform': rotate,
'-moz-transform': rotate,
'-o-transform': rotate,
'-ms-transform': rotate,
'transform': rotate
});
});
});
</script>
答案 1 :(得分:0)
<script type="text/JavaScript">
$(document).ready(function(){
$('img').each(function () {
var deg = $(this).data('rotate') || 0;
var rotate = 'rotate(' + $(this).data('rotate') + 'deg)';
$(this).css({
'-webkit-transform': rotate,
'-moz-transform': rotate,
'-o-transform': rotate,
'-ms-transform': rotate,
'transform': rotate
});
});
});
</script>
答案 2 :(得分:0)
加载图像后调用您的函数。要做到这一点,请使用jquery onload。
$( "img" ).load(function() {
var deg = $(this).data('rotate') || 0;
var rotate = 'rotate(' + $(this).data('rotate') + 'deg)';
$(this).css({
'-webkit-transform': rotate,
'-moz-transform': rotate,
'-o-transform': rotate,
'-ms-transform': rotate,
'transform': rotate
});
});
当加载事件和所有子元素已完全加载时,会将事件发送到元素。此事件可以发送到与URL关联的任何元素:图像,脚本,框架,iframe和窗口对象
答案 3 :(得分:0)
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min"></script>
.js失踪了。谢谢你快速回答。
这个有效。
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/JavaScript">
$(document).ready(function(){
$('img').each(function () {
var deg = $(this).data('rotate') || 0;
var rotate = 'rotate(' + $(this).data('rotate') + 'deg)';
$(this).css({
'-webkit-transform': rotate,
'-moz-transform': rotate,
'-o-transform': rotate,
'-ms-transform': rotate,
'transform': rotate
});
});
});
</script>
</head>
<body>
<img id="preload1" style="transition: all 2400ms;" src="https://cdn2.iconfinder.com/data/icons/windows-8-metro-style/512/wheel.png" data-rotate="200" height="40%" width="40%" />
<img id="preload1" style="transition: all 2400ms;" src="https://cdn2.iconfinder.com/data/icons/windows-8-metro-style/512/wheel.png" data-rotate="-200" height="40%" width="40%" />
</body>
</html>