compass/direction.js

22 lines
388 B
JavaScript
Raw Permalink Normal View History

2018-08-30 12:01:11 -06:00
'use strict'
/* global $ window */
2018-08-30 12:01:11 -06:00
window.addEventListener('deviceorientation', function(e){
2018-08-30 12:01:11 -06:00
// No orientation data
2020-03-29 21:13:43 -06:00
if(!e||!e.alpha) $('#no-dir').show()
2018-08-30 12:01:11 -06:00
// Set orientation
else {
$('#no-dir').hide()
const rot = 'rotate('+e.alpha.toString().substring(0,5)+'deg)'
$('#rose').css({
'-ms-transform': rot,
'-webkit-transform': rot,
'transform': rot
})
}
2018-08-30 12:01:11 -06:00
}, true)