javascript 或者 jQuery 实现 文字横向连续滚动
用javascript或者jQuery等都行,只要实现即可。要求:传入三个参数(x,y,text),text为显示文字的内容,x,y代表文字在屏幕中显示位置的坐标,因为担...
用javascript或者jQuery等都行,只要实现即可。
要求:传入三个参数(x,y,text), text为显示文字的内容,x,y代表文字在屏幕中显示位置的坐标,
因为担当的是共通得部分,别人调用我的function方法,所以x,y位置不定,大侠们,拜托了, 展开
要求:传入三个参数(x,y,text), text为显示文字的内容,x,y代表文字在屏幕中显示位置的坐标,
因为担当的是共通得部分,别人调用我的function方法,所以x,y位置不定,大侠们,拜托了, 展开
1个回答
展开全部
<!DOCTYPE HTML>
<html>
<head>
<meta charset=UTF-8 />
<title>Nothing</title>
<style type="text/css">
</style>
<script>
var create = function (x, y, text)
{
var marquee = document.createElement ('marquee');
marquee.style.position = 'absolute';
marquee.style.left = x + 'px';
marquee.style.top = y + 'px';
marquee.innerText = text;
document.body.appendChild (marquee);
}
window.onload = function ()
{
create (100, 100, "Look boddy, U got work harder and put yourself to the JavaScript, once U learn the heart of the JavaScript, I can guarantee U win.");
}
</script>
</head>
<body>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询