jquery做漂浮广告源码 -wuli硕的博客-csdn博客

  • Post author:
  • Post category:其他


<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title></title>

<script type=”text/javascript” src=”js/jquery-3.3.1.js”></script>

<script type=”text/javascript”>

$(function() {


var moveX = 0; //往X轴移动的距离

var moveY = 0; //往Y轴移动的距离

var speedX = 1; //X轴的速度

var speedY = 1; //Y轴的速度

var directionX = 0 // 定义往X轴的方向 0 为向右边 1为向左

var directionY = 0 // 定义往Y轴的方向 0 为向下边 1为向上


var movelala = function() {


var imgdiv = $(“.d1”); //图片DIV

var Imgh = $(“.d1”).height(); //图片的高度

var Imgw = $(“.d1”)



版权声明:本文为weixin_43996998原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。