Animated 3D Cube Using HTML CSS JAVASCRIPT
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script> | |
<title>CSS3 3D Cube</title> | |
<style> | |
body{line-height:1} | |
nav ul{list-style:none} | |
blockquote,q{quotes:none} | |
blockquote:before,blockquote:after,q:before,q:after{content:none} | |
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent} | |
ins{background-color:#ff9;color:#000;text-decoration:none} | |
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold} | |
del{text-decoration:line-through} | |
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help} | |
table{border-collapse:collapse;border-spacing:0} | |
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0} | |
input,select{vertical-align:middle} | |
a, a:visited { | |
color: #0101d0; | |
font-weight: bold; | |
cursor: pointer; | |
font-size: 20px; | |
font-family: arial; | |
line-height: 20px; | |
display: inline-block; | |
padding: 10px; | |
} | |
a:hover { | |
color: #000; | |
} | |
#wrapD3Cube { | |
width: 250px; | |
height: 213px; | |
margin: 20px auto; | |
background-color: #EEE; | |
} | |
#D3Cube { | |
width: 112px; | |
height: 112px; | |
top: 50px; | |
transform-style: preserve-3d; | |
-moz-transform-style: preserve-3d; | |
-webkit-transform-style: preserve-3d; | |
transform: rotateX(-22deg) rotateY(-38deg) rotateZ(0deg); | |
-moz-transform: rotateX(-22deg) rotateY(-38deg) rotateZ(0deg); | |
-webkit-transform: rotateX(-22deg) rotateY(-38deg) rotateZ(0deg); | |
margin: auto; | |
position: relative; | |
-moz-transform-style: preserve-3d; | |
transform-style: preserve-3d; | |
-webkit-transition: all 0.5s ease-in-out; | |
transition: all 0.5s ease-in-out; | |
} | |
#D3Cube > div { | |
position: absolute; | |
-webkit-transition: all 0.5s ease-in-out; | |
transition: all 0.5s ease-in-out; | |
width: 112px; | |
height: 112px; | |
float: left; | |
overflow: hidden; | |
opacity: 0.85; | |
} | |
#side1 { | |
transform: rotatex(90deg) translateX(0px) translateY(0px) translateZ(56px); | |
-moz-transform: rotatex(90deg) translateX(0px) translateY(0px) translateZ(56px); | |
-webkit-transform: rotatex(90deg) translateX(0px) translateY(0px) translateZ(56px); | |
background-color: #ff0000; | |
} | |
#side2 { | |
transform: rotateY(-90deg) translateX(0px) translateY(0px) translateZ(56px); | |
-moz-transform: rotateY(-90deg) translateX(0px) translateY(0px) translateZ(56px); | |
-webkit-transform: rotateY(-90deg) translateX(0px) translateY(0px) translateZ(56px); | |
background-color: #4d0000; | |
} | |
#side3 { | |
transform: translateX(0px) translateY(0px) translateZ(56px); | |
-moz-transform: translateX(0px) translateY(0px) translateZ(56px); | |
-webkit-transform: translateX(0px) translateY(0px) translateZ(56px); | |
background-color: #006600; | |
} | |
#side4 { | |
transform: rotateY(90deg) translateX(0px) translateY(0px) translateZ(56px); | |
-moz-transform: rotateY(90deg) translateX(0px) translateY(0px) translateZ(56px); | |
-webkit-transform: rotateY(90deg) translateX(0px) translateY(0px) translateZ(56px); | |
background-color: #000066; | |
} | |
#side5 { | |
transform: rotateY(180deg) translateX(0px) translateY(0px) translateZ(56px); | |
-moz-transform: rotateY(180deg) translateX(0px) translateY(0px) translateZ(56px); | |
-webkit-transform: rotateY(180deg) translateX(0px) translateY(0px) translateZ(56px); | |
background-color: #602020; | |
} | |
#side6 { | |
transform: rotateX(-90deg) translateX(0px) translateY(0px) translateZ(56px); | |
-moz-transform: rotateX(-90deg) translateX(0px) translateY(0px) translateZ(56px); | |
-webkit-transform: rotateX(-90deg) translateX(0px) translateY(0px) translateZ(56px); | |
background-color: #3399ff; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="wrapD3Cube"> | |
<div id="D3Cube"> | |
<div id="side1"></div> | |
<div id="side2"></div> | |
<div id="side3"></div> | |
<div id="side4"></div> | |
<div id="side5"></div> | |
<div id="side6"></div> | |
</div> | |
</div> | |
<p style="text-align: center;"> | |
<a onclick="turnLeft()">Left</a> | |
<a onclick="turnRight()">Right</a> <br /> | |
<a onclick="flipCube()">Flip</a> | |
</p> | |
</body> | |
<script> | |
var cubex = -22, // initial rotation | |
cubey = -38, | |
cubez = 0; | |
function rotate(variableName, degrees) { | |
window[variableName] = window[variableName] + degrees; | |
rotCube(cubex, cubey, cubez); | |
} | |
function rotCube(degx, degy, degz){ | |
segs = "rotateX("+degx+"deg) rotateY("+degy+"deg) rotateZ("+degz+"deg) translateX(0) translateY(0) translateZ(0)"; | |
$('#D3Cube').css({"transform":segs}); | |
} | |
function turnRight() { | |
rotate("cubey", 90); | |
} | |
function turnLeft() { | |
rotate("cubey", -90); | |
} | |
function flipCube() { | |
rotate("cubez", -180); | |
} | |
</script> | |
</html> |
Result
ReplyDeleteGreat Post! Really this is very knowledgeable and inspirational post to anyone. Here are you explain few important concept to us. . Thanks for sharing this informative article. Anyway , I am a professional Essay writer, and I have been works in this sector around five years. So If any people are Interested to best paper writing services So I strongly Recommend that people for contacting us. We are specially providing essay and others kind of academic high quality writing services and Our Aim is our customer satisfaction. Being with us! Thank you!
My partner and I absolutely love your blog and find nearly all of your post's to be just what I'm looking for. Do you offer guest writers to write content in your case? I wouldn't mind creating a post or elaborating on a lot of the subjects you write about here. Again, awesome website! Titanium Pipe
ReplyDeleteWe provide top reviews of the latest shower filters ,Water filters and top shower heads. See Our website for top quality shower information .
ReplyDeleteif you want more just look here "Best Shower filters"
Looker is a data-discovery app that provides innovative data exploration functionalities for businesses both large and small. With it, they can access a web-based interface where they can easily get real-time insights on their operations via data analytics.
ReplyDeleteif you want more just look here "Looker training"
eVisa India (electronic India Visa, which has the same privileges as Indian Visa) is valid only on the following designated Airports and Seaports for entering India. In other words, not all airports and seaports allow entry into India on eVisa India. As a passenger the onus is on you to make sure that your itinerary allows use of this electronic India Visa. If you are entering India form a land border, for instance, then this electronic India Visa (eVisa India) is not suitable for your journey.
ReplyDeleteif you want more just look here "indian visa online"
Easily accessible by communication devices, both smartphones and computers. Access anywhere, anytime There are casino games to choose from, including fish shooting games, table games such as online slots, Pussy888, roulette or card games such as baccarat (baccarat) and many other games with special promotions, free credit. And so on
ReplyDeleteif you want more just look here "pussy888"
We don't publish fake deals or offers that don't work. We only publish real, working coupon codes. We are honest and authentic and shoppers love us for it.
ReplyDeleteif you want more just look here "function of beauty coupon"
Natural Crystal Pens, Manifestation Tools, Affirmation, and Law of Attraction driven products.
ReplyDeleteif you want more just look here "crystals"
My brother recommended I might like this website. He was totally right. This post truly made my day. You cann't imagine simply how much time I had spent for this info! Thanks! icl singapore
ReplyDeleteThanks for the update, can I set it up so I receive an email whenever you make a new post? part time jobs in singapore
ReplyDeleteI'm still learning from you, while I'm trying to reach my goals. I absolutely love reading everything that is posted on your blog.Keep the aarticles coming. I loved it! government grant
ReplyDeleteI'm really enjoying the design and layout of your site. It's a very easy on the eyes which makes it much more pleasant for me to come here and visit more often. Did you hire out a designer to create your theme? Superb work! buy paintings online
ReplyDeleteThis is amazing, thanks for sharing it. Also, check this out if you are looking for professional website or logo design services:
ReplyDeleteBuy Logo
This design is wicked! You definitely know how to keep a reader entertained. Between your wit and your videos, I was almost moved to start my own blog (well, almost...HaHa!) Wonderful job. I really loved what you had to say, and more than that, how you presented it. Too cool! Fat freezing Singapore
ReplyDeleteWhat are the best sugar daddy websites for sugar babies finding a sugar daddy? What are the best sugar daddy sites for helping to get a sugar daddy free of charge? If you have asked questions like these, then you have come to the right place. Because these are two of the questions that lots of sugar babies often ask when they are looking for sugar daddies, and we answer them both and more.
ReplyDeletesugarguide
The secret law of attraction dates back 5,000 years ago and it a natural law. It is not magic, but like magic and prays it is placing an intention to God or Universe to let them know what you want or need. It is a very powerful tool to change your life. You can bring yourself into perfect alignment with what you want or need. With the power of affirmations, visualization, and prays you to improve your life. Law of Attraction techniques
ReplyDeleteGreat post. I found your website comprehensive for my needs. I truly like what you have acquired here, canaan avalon 1246
ReplyDeleteNice read, I just passed this onto a friend who was doing a little research on that. And he actually bought me lunch since I found it for him smile So let me rephrase that: Thank you for some other informative blog. Where else could I get that type of information written in such an ideal means? I have a mission that I’m just now working on, and I have been at the look out for such information . Superbly written article, if only all bloggers offered the same content as you, the internet would be a far better place. It’s very informative and you are obviously very knowledgeable in this area. You have opened my eyes to varying views on this topic with interesting and solid content. 승인전화없는토토사이트
ReplyDeleteI am really enjoying reading your well written articles. It looks like you spend a lot of effort and time on your blog. I have bookmarked it and I am looking forward to reading new articles. This is exceptionally intriguing substance! I have completely appreciated perusing your focuses and have arrived at the conclusion that you are ideal about a considerable lot of them. You are extraordinary. I am pleased and fortunate to come on to your site, I really liked the wonderful article on your site. Thanks for this useful information. I also found very interesting information 토토사이트
ReplyDeleteHello There. I found your blog using msn. This is an extremely well written article. I will be sure to bookmark it and return to read more of your useful information. Thanks for the post. I’ll certainly comeback. Just admiring your work and wondering how you managed this blog so well. It’s so remarkable that I can't afford to not go through this valuable information . I want to share good information. Get good information. I will get good information. Everyone will have a hard time due to the corona, but please do your best. I hope that the corona will disappear soon. It would be hard for everyone, but I hope that the more I will endure and get good results. Thank you 블랙잭
ReplyDeleteI will’t agree with focusing lengthy sufficient to research; a lot much less write this sort of article. You’ve outdone yourself with this cloth really. It's far one of the best contents. I sense very thankful that i study this. It is very helpful and really informative and that i really discovered a lot from it . This is a tremendous article, given any such super amount of records in it, those type of articles continues the customers enthusiasm for the web page, and continue sharing more ... Thank you for sharing terrific records. It's miles excellent to study such terrific content. Thanks for the submit. Thanks, biomiracle products performs a major function and it isn't always best for the beauty reason however it also works to maintain us healthy. Our products will defend your skin from zits, wrinkles, darkcircles and tightens your skin with none infection. Exciting topic for a weblog. 먹튀검증
ReplyDeleteAfter examination a couple of the blog articles with your site now, we genuinely like your method of writing for a blog. I bookmarked it to my bookmark site rundown and you will return soon. Pls investigate my webpage similarly and advise me on the off chance that you agree. I am frequently to writing for a blog I really like your posts. The article has truly tops my advantage. I will probably bookmark your web blog and continue checking picking data. Fantastic post be that as it may , I was needing to know whether you could compose a litte more regarding this matter? I'd be exceptionally appreciative in the event that you could expound somewhat more. Gesundheit! 먹튀검증업체
ReplyDeleteThis particular papers fabulous, and My spouse and i enjoy each of the perform that you have placed into this. I’m sure that you will be making a really useful place. I has been additionally pleased. Good perform! Thanks dear admin, I appreciate your effort, you have quality content on your website, I have bookmarked for future pursue. Keep it up Truly decent and intriguing post. I was searching for this type of information and delighted in perusing this one. Continue posting. A debt of gratitude is in order for sharing Usually, I never comment on blogs but your article is so convincing that I never stop myself to say something about it. You’re doing a great job Man, Keep it up. very interesting, good job and thanks for sharing such a good blog. 카이소
ReplyDeleteI'm truly intrigued that there is such a lot of data about this subject that have been revealed and you've put forth a valiant effort, with such a lot of class. I was suggested this blog by my cousin. I'm uncertain about whether this post is composed by him as no one else know such point by point about my trouble. You're great! Much obliged! Noteworthy site, Distinguished input that I can handle. Im pushing ahead and may apply to my present place of employment as a pet sitter, which is truly pleasant, however I need to extra extend. Recognizes for paper a particularly advantageous organization, I staggered adjacent to your blog other than translate a restricted declare. I need your method of engraving.. 사설토토
ReplyDeleteI have express a few of the articles on your website now, and I really like your style of blogging. I added it to my favorite’s blog site list and will be checking back soon… This is a good post. This post gives truly quality information. I’m definitely going to look into it. Really very useful tips are provided here. Thank you so much. Keep up the good works . You have done a great job. I will definitely dig it and personally recommend to my friends. I am confident they will be benefited from this site. quite like reading an article that can make people think. Also, thanks for allowing for me to comment! 토토디펜드
ReplyDelete