How would I implement this:
http://elliottkember.com/sexy_curls.html
In a ASP.Net MVC 3 web application?
My _Layout.cshtml page head tag source looks like this:
<head>
<title>@ViewBag.Title</title>
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<script src="@Url.Content("~/Scripts/jquery-1.4.4.min.js")" type="text/javascript"></script>
<script src=@Url.Content("~/turn/turn.js")" type="text/javascript"></script>
<link rel="stylesheet" href=@Url.Content("~/turn/turn.css")"/>
<script type="text/javascript">
$(document).ready(function () {
$('#target').fold();
});
And then I have an image tag in the body:
<img id="target" src=@Url.Content("~/turn/code.png") alt="blah"/>
I only get it to show the entire background image, but no curl.
Any help would be appreciated! Thank you.
You are missing some double quotes here:
here:
and here: