这是一个原生JS、CSS实现的转盘效果(题目在这:http://www.cnblogs.com/arfeizhang/p/turntable.html),花了半个小时左右,准备睡觉,所以先贴一段代码,预计会抽空优化,让它在手机上也能运行;另外,如果看代码的时候有什么问题,请留言。。。

 <!DOCTYPE html>
<html> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>转盘</title>
<style>
.holder {
width: 550px;
display: block;
margin: 10px auto;
padding: 20px;
border: 3px solid black;
border-radius: 10px;
position: relative;
}
.rotate-pointer {
display: block;
position: absolute;
width: 521px;
line-height: 10px;
top: 270.5px;
left: 37px;
-webkit-transition:all 4s ease-in-out;
}
#rules {
width: 260.5px;
height: 10px;
display: inline-block;
background-color: black;
}
</style>
</head> <body>
<div class="holder">
<img src="https://images0.cnblogs.com/i/636015/201406/151737329993303.jpg" alt="">
<div id="pointer" class="rotate-pointer">
<div id="rules"></div>
</div>
</div>
<script type="text/javascript">
window.onload = function() {
var table = document.getElementsByClassName('holder')[0],
tablePointer = document.getElementById('pointer'),
getRandom = function(min, max) {
max = max || 1000;
min = min || 0;
return Math.floor(Math.random() * (max - min) + min);
},
degree = 0,
min_circle_times = 2,
max_circle_times = 6,
translate = function() {
degree += getRandom(min_circle_times * 360, max_circle_times * 360); requestAnimationFrame(function() {
tablePointer.style.webkitTransform = 'rotate(' + degree + 'deg)';
});
};
table.onclick = translate; };
</script>
</body> </html>

  


  昨天放出上述内容后,收到题目博主的评论,发现好像有些地方不符合需求,恩,又再试了一个版本,这个版本目前是支持手机的,不过还是只能在webkit内核下使用哦,源码如下:

<!DOCTYPE html>
<html> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>转盘</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<style>
body {
margin:0px;
}
.holder {
text-align: center;
overflow: hidden;
display: block;
margin: 10px auto;
border: 3px solid black;
border-radius: 10px;
position: relative;
}
#table {
cursor: pointer;
display: inline-block;
max-width: 521px;
width: 100%;
-webkit-transition:all 4s ease-in-out;
}
</style>
</head> <body>
<div class="holder">
<img id="table" src="https://images0.cnblogs.com/i/631009/201406/181334125825974.png" alt="">
</div>
<script type="text/javascript">
window.onload = function() {
var degreeCount = 0,
table = document.getElementById('table'),
table_rect = table.getBoundingClientRect(),
circle_center = {
x: table_rect.width / 2 + table_rect.left,
y: table_rect.height / 2 + table_rect.top
},
min_circle_times = 2,
max_circle_times = 6,
getRandom = function(min, max) {
max = max || 1000;
min = min || 0;
return Math.floor(Math.random() * (max - min) + min);
}, // 根据两点求角度
getDegreeByPoint = function(start, enb) {
var tan1 = (start.y - circle_center.y) / (start.x - circle_center.x),
degree1 = Math.round(360 * Math.atan(tan1) / Math.PI),
tan2 = (enb.y - circle_center.y) / (enb.x - circle_center.x),
degree2 = Math.round(360 * Math.atan(tan2) / Math.PI);
return -(degree1 - degree2);
},
rotate_rings = 0,
rotate = function(degree) {
degree = degree - 0;
if (Number.isNaN(degree)) {
degree = degreeCount += getRandom(min_circle_times * 360, max_circle_times * 360);
} else {
degree += degreeCount;
}
requestAnimationFrame(function() {
table.style.webkitTransform = 'rotate(' + degree + 'deg)';
});
}; // 事件监听器
var InputListener = function(tableId) {
this.tableId = tableId;
this.events = {}; if (window.navigator.msPointerEnabled) {
//Internet Explorer 10 style
this.eventTouchstart = "MSPointerDown";
this.eventTouchmove = "MSPointerMove";
this.eventTouchend = "MSPointerUp";
} else {
this.eventTouchstart = "touchstart";
this.eventTouchmove = "touchmove";
this.eventTouchend = "touchend";
} this._beginListen();
};
InputListener.prototype = {
on: function(event, callback) {
if (!this.events[event]) {
this.events[event] = [];
}
this.events[event].push(callback);
},
emit: function(event, data) {
var callbacks = this.events[event];
if (callbacks) {
callbacks.forEach(function(callback) {
callback(data);
});
}
},
_start: function(event) {
this.emit("start", event);
},
_rotate: function(event) {
this.emit("rotate", event);
},
_stop: function(event) {
this.emit("stop", event);
},
_celebrate: function(event) {
this.emit("celebrate", event);
},
_click: function(event) {
this.emit("click", event);
},
_getPointByEvent: function(event, toucherName) {
toucherName = toucherName || 'touches';
var point = null;
if (window.navigator.msPointerEnabled) {
point = {
x: event.pageX,
y: event.pageY,
time: Date.now()
};
} else {
point = {
x: event[toucherName][0].clientX,
y: event[toucherName][0].clientY,
time: Date.now()
};
}
return point;
},
_beginListen: function() {
var self = this,
table = document.getElementById(this.tableId),
startPoint = null,
movePath = []; // Respond to direction keys
table.addEventListener('click', function(event) {
self._click();
}); table.addEventListener(this.eventTouchstart, function(event) {
if ((!window.navigator.msPointerEnabled && event.touches.length > 1) ||
event.targetTouches > 1) {
return; // Ignore if touching with more than 1 finger
}
startPoint = self._getPointByEvent(event); movePath = [startPoint];
self._start({
start: startPoint
}); event.preventDefault();
}); table.addEventListener(this.eventTouchmove, function(event) {
var endpoint = self._getPointByEvent(event);
if ( !! endpoint) {
movePath.push(endpoint);
self._rotate({
degree: getDegreeByPoint(startPoint, endpoint),
start: startPoint,
end: endpoint
});
}
event.preventDefault();
}); table.addEventListener(this.eventTouchend, function(event) {
if ((!window.navigator.msPointerEnabled && event.touches.length > 0) ||
event.targetTouches > 0) {
return; // Ignore if still touching with one or more fingers
}
var endpoint = self._getPointByEvent(event, 'changedTouches'),
countToCal = 3,
len = movePath.length; self._stop({
degree: getDegreeByPoint(startPoint, endpoint),
start: startPoint,
end: endpoint
});
movePath.push(endpoint);
if (len <= 3) {
self._click({
start: startPoint
});
} else {
var p1 = movePath[len - 1],
p2 = movePath[len - 1 - 3],
// 转动的弧度
degree = getDegreeByPoint(p2, p1),
time = p1.time - p2.time,
speed = degree / time * 1000,
// 速度转换为期望的周数,4指的是CSS动画时间
expectDegree = (speed * 4) + min_circle_times;
self._celebrate({
start: p2,
end: p1,
degree: expectDegree
});
}
event.preventDefault();
});
}
}; var listener = new InputListener('table');
listener.on('start', function(e) {
table.style.webkitTransition = 'all 0s';
}); listener.on('rotate', function(e) {
console.log(e.degree);
rotate(e.degree);
}); listener.on('stop', function(e) {
degreeCount += e.degree;
//degreeCount = degreeCount % 360;
table.style.webkitTransition = 'all 4s ease-in-out';
}); listener.on('celebrate', function(e) {
rotate(e.degree);
}); listener.on('click', rotate);
};
</script>
</body> </html>

一个可以在线运行的地址:http://www.w3cfuns.com/home.php?mod=space&uid=5446932&do=blog&quickforward=1&id=5398670

原生JS、CSS实现的转盘效果(目前仅支持webkit)的更多相关文章

  1. 使用原生JS+CSS或HTML5实现简单的进度条和滑动条效果(精问)

    使用原生JS+CSS或HTML5实现简单的进度条和滑动条效果(精问) 一.总结 一句话总结:进度条动画效果用animation,自动效果用setIntelval 二.使用原生JS+CSS或HTML5实 ...

  2. 实用js+css多级树形展开效果导航菜单

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  3. js+css实现带缓冲效果右键弹出菜单

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  4. 原生js实现canvas气泡冒泡效果

    说明: 本文章主要分为ES5和ES6两个版本 ES5版本是早期版本,后面用ES6重写优化的,建议使用ES6版本. 1, 原生js实现canvas气泡冒泡效果的插件,api丰富,使用简单2, 只需引入J ...

  5. 使用原生js 实现点击消失效果

    JQ版 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title ...

  6. 利用tween,使用原生js实现模块回弹动画效果

    最近有一个需求,就是当屏幕往下一定像素时,下方会有一个隐藏的模块马上显现出来,向上运动后带有回弹效果.然后屏幕滚回去时这个模块能够原路返回 其实这个效果css3就可以很轻松实现,但是公司要求最低兼容i ...

  7. 原生js+css实现重力模拟弹跳系统的登录页面

    今天小颖把之前保存的js特效视频看了一遍,跟着视频敲了敲嘻嘻,用原生js实现一个炫酷的登录页面.怎么个炫酷法呢,看看下面的图片大家就知道啦. 效果图: 不过在看代码之前呢,大家先和小颖看看css中的o ...

  8. 原生JS实现幻灯片轮播效果

    在以往的认知中,一直以为用原生JS写轮播是件很难得事情,今天上班仿照网上的写了一个小demo.小试牛刀. 大致效果: html结构很简单,两个列表,一个代表图片列表,一个是右下角序号列表. <d ...

  9. 原生js简单实现拖拽效果

    实现弹窗拖拽效果的原理是:按下鼠标并移动——拖拽移动物体,抬起鼠标——停止移动.主要触发三个事件:onmousedown.onmousemove以及onmouseup: 首先搭建结构:一个宽350px ...

随机推荐

  1. PL/SQL之--存储过程

    一.存储过程 存储过程是一组为了完成特定功能的SQL 语句集,经编译后存储在数据库中,用户通过指定存储过程的名字并给出参数(如果该存储过程带有参数)来执行它.oracle可以把PL/SQL程序储存在数 ...

  2. APACHE重写去除入口文件index.php

    下面我说下 apache 下 ,如何 去掉URL 里面的 index.php 例如: 你原来的路径是: localhost/index.php/index 改变后的路径是: localhost/ind ...

  3. VMware Workstation不可恢复的错误:(vmui)

    虚拟机中部署项目,由于项目的日志是gbk的,就把虚拟机中linux编码改成gbk了,结果问题来了,日志显示中文正常了,但是虚拟机运行一下就出错了,注意虚拟机出错,并没导致linux也挂掉,只是linu ...

  4. 【转载】chromium浏览器开发系列第一篇:如何获取最新chromium源码

    背景:     最近摊上一个事儿,领导非要让写一篇技术文章,思来想去,自己接触chrome浏览器时间也不短了,干脆就总结一下吧.于是乎,本文顺理成章.由于有些细节必需描述清楚,所以这次先讲如何拿到ch ...

  5. [转]PDF预览插件PDFObject.js

    本文转自:http://pdfobject.com/index.php When possible, use standardized HTML markup and avoid JavaScript ...

  6. jmap,jhat分析内存

    分析JAVA Application的内存使用时,jmap是一个很实用的轻量级工具.使用jmap可以查看heap空间的概要情况,粗略的掌握heap的使用情况.也可以生成heapdump文件,再使用jh ...

  7. 单调队列应用--BZOJ 3831 Little Bird

    3831: [Poi2014]Little Bird Time Limit: 20 Sec  Memory Limit: 128 MB Description In the Byteotian Lin ...

  8. 离散化+线段树 POJ 3277 City Horizon

    POJ 3277 City Horizon Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 18466 Accepted: 507 ...

  9. 孙鑫视频学习:VS2010中找不到【Tab order】菜单项

    在学习孙鑫视频中,修改Tab顺序时,找不到VC6.0中提到的[Layout]->[Tab order]菜单项,但VC2010中可以用Ctrl+D调出来Tab顺序,或者[格式]->[Tab键 ...

  10. UESTC 918 WHITE ALBUM --生成树变形

    最小生成树变形. 题目已经说得很清楚,要求到达每个房间,只需求一个最小生成树,这时边权和一定是最小的,并且那k个房间一定与所有点都有通路,即一定都可以逃脱. 但是有可能当所有点都有了该去的安全房间以后 ...