timelinejs icon indicating copy to clipboard operation
timelinejs copied to clipboard

plz add images lazyload

Open daanhan opened this issue 7 years ago • 1 comments

👍 👍 :)

daanhan avatar Feb 03 '18 10:02 daanhan

I used a little bit of bootstrap but I'm sure you can figure it out ;)

<style>
	.timeline-background{
		background-repeat: no-repeat; 
		background-size: cover;
		background-position: center;
		height: 100%;
		padding: 0px;
		margin: 0px;
		border: 0px;
	}
	.timeline-vertical-center{
		min-height: 100%;
		display: flex;
		align-items: center;
	}
</style>
<div class="timeline-container timeline-theme-1">
	<div class="timeline js-timeline">
		<div data-time="2011" id="timeline-clicker">
			<div class="timeline-background" style="background-image: url(media/business-2.jpg);" title="Photo by Danielle MacInnes">
				<div class="timeline-vertical-center" style="width: 100%;">
					<div class="text-center text-white" style="width: 100%;">
						<h3><strong>Nomen Tuum founding</strong></h3>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>

rewrite123 avatar May 24 '19 20:05 rewrite123