Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialConnor Sage
9,577 PointsUse a 3D transform function to rotate .photo 30 degrees on the Y-axis only.
This is brand new to me, could somebody please help me?
/* Complete the challenge by writing CSS below */
.wrapper {
perspective: 600px;
}
.photo {
transform: rotateY(30deg);
}
<!DOCTYPE html>
<html>
<head>
<title>3D Transform Challenge</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<img class="photo" src="1.jpg" alt="Dazzling Auroras">
</div>
</body>
</html>
3 Answers
Jennifer Nordell
Treehouse TeacherWhile your code would have the same effect, it's not what they're asking you to do. They specifically state they want the 3d rotate. Take a look at my code:
.wrapper {
perspective: 600px;
}
.photo {
transform: rotate3d(0, 1, 0, 30deg);
}
Here we've toggled the Yaxis to "on" with the 1. Then we set the degrees at the end.
David Bath
25,940 PointsIn my opinion the challenge should have accepted Connor's solution, since "rotateY(a)is a shorthand for rotate3D(0, 1, 0, a)."
Diana Ci
18,672 PointsI was struggling some time with this second challenge because I used space between the word rotate3d and parenthesis :) like this "rotate3d (..." So make shore everyone not to do this little mistake.... no spaces
.photo { transform: rotate3d(0, 1, 0, 30deg); }
Steve Rau
Front End Web Development Techdegree Graduate 12,763 PointsSteve Rau
Front End Web Development Techdegree Graduate 12,763 Pointsthanks for that... I also agree with David