RotateX and Y Demo

Developer
Size
3,329 Kb
Views
8,096

How do I make an rotatex and y demo?

This is used to embed in my blog http://agelber.com/blog/3d-transforms. What is a rotatex and y demo? How do you make a rotatex and y demo? This script and codes were developed by Assaf Gelber on 03 January 2023, Tuesday.

RotateX and Y Demo Previews

RotateX and Y Demo - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>RotateX and Y Demo</title> <script src="https://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ @import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:300';
body { margin-top: 50px; overflow: hidden; font-family: Source Sans Pro; perspective: 400px;
}
#element { box-sizing: border-box; position: absolute; left: 300px; width: 100px; height: 100px; background: #387FF2; line-height: 90px; text-align: center; font-size: 100px; color: #444; border: 3px solid #444; margin: 0 auto;
}
.slider, #css { position: relative;
}
.slider label, #css label { display: inline-block; width: 12px;
}
.slider input, #css input { vertical-align: middle;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div id='element'>?</div>
<div class='slider'> <label>X:</label> <input id='xslider' max='180' min='-180' type='range'>
</div>
<div class='slider'> <label>Y:</label> <input id='yslider' max='180' min='-180' type='range'>
</div>
<div id='css'>transform: rotateX(0deg) rotateY(0deg)</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

RotateX and Y Demo - Script Codes CSS Codes

@import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:300';
body { margin-top: 50px; overflow: hidden; font-family: Source Sans Pro; perspective: 400px;
}
#element { box-sizing: border-box; position: absolute; left: 300px; width: 100px; height: 100px; background: #387FF2; line-height: 90px; text-align: center; font-size: 100px; color: #444; border: 3px solid #444; margin: 0 auto;
}
.slider, #css { position: relative;
}
.slider label, #css label { display: inline-block; width: 12px;
}
.slider input, #css input { vertical-align: middle;
}

RotateX and Y Demo - Script Codes JS Codes

var el = document.getElementById('element'), css = document.getElementById('css'), x = 0, y = 0;
document.getElementById('xslider').addEventListener('change', function() { x = this.value; update();
}, false);
document.getElementById('yslider').addEventListener('change', function() { y = this.value; update()
}, false);
function update() { var prop = 'rotateX(' + x + 'deg) rotateY(' + y + 'deg)'; el.style[Modernizr.prefixed('transform')] = prop; css.innerText = 'transform: ' + prop;
}
RotateX and Y Demo - Script Codes
RotateX and Y Demo - Script Codes
Home Page Home
Developer Assaf Gelber
Username agelber
Uploaded January 03, 2023
Rating 3
Size 3,329 Kb
Views 8,096
Do you need developer help for RotateX and Y Demo?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Assaf Gelber (agelber) Script Codes
Create amazing SEO content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!