嘿我如何加载此代码
以visual studio中的简单网络形式显示。
例如,我可以将其插入
var rotation = function (){
$("#image").rotate({
angle:0,
animateTo:360,
callback:enter code here rotation,
easing: function (x,t,b,c,d){ // t: current time, b: begInnIng value,
c: change In value, d: duration
return c*(t/d)+b;
}
});
}
rotation();
答案 0 :(得分:0)
将该代码放入JavaScript文件(.js)中,然后在您的Web表单文件中添加一个引用.js文件的标记:
<script language="JavaScript" src="scripts.js"></script>
第二种可能性是将该代码放在Web表单文件的脚本标记中:
<script>
var rotation = function (){
$("#image").rotate({
angle:0,
animateTo:360,
callback: rotation,
easing: function (x,t,b,c,d){ // t: current time, b: begInnIng value, c: change In value, d: duration
return c*(t/d)+b;
}
});
}
$(document).ready(function(){
rotation();
});
</script>
当然,在包含js文件之前,或者在内联脚本标记之前,您需要确保首先引用jQuery和其他任何需要的JavaScript库。
希望这有帮助
编辑:这是我身边的工作人员:<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<img src="https://www.google.com/images/srpr/logo3w.png" id="image">
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js">
</script>
<script type="text/javascript" src="http://jqueryrotate.googlecode.com/svn/trunk/jQueryRotate.js"></script>
<script type="text/javascript">
function rotation() {
$("#image").rotate({
angle: 0,
animateTo: 360,
callback: rotation,
easing: function(x, t, b, c, d) { // t: current time, b: begInnIng value, c: change In value, d: duration
return c * (t / d) + b;
}
});
};
$(document).ready(function () {
rotation();
})
</script>
</html>