This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" > | |
function writeFlash(movieLocation,mywidth,myheight,myname) { | |
if (myname) { myid=myname; } else { myid="flashanimation"; } | |
document.write('<object type="application/x-shockwave-flash"id="'+myid+'"width="'+mywidth+'"height="'+myheight+'"data="'+movieLocation+'"> <param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+movieLocation+'" /><param name="quality" value="high" /><param name="scale"value="noscale" /><param name="wmode" value="transparent"/></object>'); | |
} | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
#videogroup { | |
width: 100%; | |
} | |
iframe { | |
width: 90%; | |
padding: 5%; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>My App</title> | |
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" /> | |
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script> | |
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script> | |
<meta name = "viewport" content = "width = device-width"> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="navbar navbar-inverse navbar-fixed-top"> | |
<div class="navbar-inner"> | |
<div class="container"> | |
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</a> | |
<a class="brand" href="index.html">Everlasting Classic</a> | |
<div class="nav-collapse collapse"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Example row of columns --> | |
<div class="row"> | |
<div class="span4"> | |
<h2>Deland, FL</h2> | |
<h3>October 20, 2009</h3> | |
<img src="images/engines.jpg" class="img-rounded" alt="Auto Show - Deland, FL" /> | |
<p><a class="btn" href="#">More info</a></p> | |
</div> | |
<div class="span4"> | |
<h2>Houston, TX</h2> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="myCarousel" class="carousel slide"> | |
<!-- Carousel items --> | |
<div class="carousel-inner"> | |
<div class="active item"><img src="images/car_blackmusclecar.jpg" alt="Car Carousel" /></div> | |
<div class="item"><img src="images/car_bluetruck.jpg" alt="Car Carousel" /></div> | |
<div class="item"><img src="images/car_blackspeedster.jpg" alt="Car Carousel" /></div> | |
<div class="item"><img src="images/car_redback.jpg" alt="Car Carousel" /></div> | |
<div class="item"><img src="images/car_cyanclassic.jpg" alt="Car Carousel" /></div> | |
<div class="item"><img src="images/car_redgrill.jpg" alt="Car Carousel" /></div> | |
<div class="item"><img src="images/car_purplefire.jpg" alt="Car Carousel" /></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$('.carousel').carousel({ | |
interval: 2000, | |
pause: "hover" | |
}) | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.group:before, .group:after { content: "\0020"; display: block; height: 0; overflow: hidden; } | |
.group:after { clear: both; } | |
.group { zoom: 1; } |
OlderNewer