mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
145 lines
4.4 KiB
HTML
145 lines
4.4 KiB
HTML
<!DOCTYPE html>
|
|
<html ng-app="ionicApp">
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
|
|
|
|
<title>Ionic Shrinking Header</title>
|
|
|
|
<link href="http://code.ionicframework.com/nightly/css/ionic.min.css" rel="stylesheet">
|
|
<link href="style.css" rel="stylesheet">
|
|
|
|
<script src="http://code.ionicframework.com/nightly/js/ionic.bundle.min.js"></script>
|
|
<script src="script.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<fake-statusbar></fake-statusbar>
|
|
|
|
<ion-pane>
|
|
|
|
<ion-header-bar class="bar-positive">
|
|
<div class="buttons">
|
|
<button class="button button-icon ion-navicon"></button>
|
|
</div>
|
|
<h1 class="title">Things</h1>
|
|
</ion-header-bar>
|
|
|
|
<ion-content header-shrink scroll-event-interval="5">
|
|
|
|
<div class="list card">
|
|
|
|
<div class="item item-avatar">
|
|
<img src="http://ionicframework.com/img/docs/mcfly.jpg">
|
|
<h2>Marty McFly</h2>
|
|
<p>November 05, 1955</p>
|
|
</div>
|
|
|
|
<div class="item item-body">
|
|
<img class="full-image" src="http://ionicframework.com/img/docs/delorean.jpg">
|
|
<p>
|
|
This is a "Facebook" styled Card. The header is created from a Thumbnail List item, the content is from a card-body consisting of an image and paragraph text. The footer consists of tabs, icons aligned left, within the card-footer.
|
|
</p>
|
|
<p>
|
|
<a href="#" class="subdued">1 Like</a>
|
|
<a href="#" class="subdued">5 Comments</a>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="item tabs tabs-secondary tabs-icon-left">
|
|
<a class="tab-item" href="#">
|
|
<i class="icon ion-thumbsup"></i>
|
|
Like
|
|
</a>
|
|
<a class="tab-item" href="#">
|
|
<i class="icon ion-chatbox"></i>
|
|
Comment
|
|
</a>
|
|
<a class="tab-item" href="#">
|
|
<i class="icon ion-share"></i>
|
|
Share
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="list card">
|
|
|
|
<div class="item item-avatar">
|
|
<img src="http://ionicframework.com/img/docs/mcfly.jpg">
|
|
<h2>Marty McFly</h2>
|
|
<p>November 05, 1955</p>
|
|
</div>
|
|
|
|
<div class="item item-body">
|
|
<img class="full-image" src="http://ionicframework.com/img/docs/delorean.jpg">
|
|
<p>
|
|
This is a "Facebook" styled Card. The header is created from a Thumbnail List item, the content is from a card-body consisting of an image and paragraph text. The footer consists of tabs, icons aligned left, within the card-footer.
|
|
</p>
|
|
<p>
|
|
<a href="#" class="subdued">1 Like</a>
|
|
<a href="#" class="subdued">5 Comments</a>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="item tabs tabs-secondary tabs-icon-left">
|
|
<a class="tab-item" href="#">
|
|
<i class="icon ion-thumbsup"></i>
|
|
Like
|
|
</a>
|
|
<a class="tab-item" href="#">
|
|
<i class="icon ion-chatbox"></i>
|
|
Comment
|
|
</a>
|
|
<a class="tab-item" href="#">
|
|
<i class="icon ion-share"></i>
|
|
Share
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="list card">
|
|
|
|
<div class="item item-avatar">
|
|
<img src="http://ionicframework.com/img/docs/mcfly.jpg">
|
|
<h2>Marty McFly</h2>
|
|
<p>November 05, 1955</p>
|
|
</div>
|
|
|
|
<div class="item item-body">
|
|
<img class="full-image" src="http://ionicframework.com/img/docs/delorean.jpg">
|
|
<p>
|
|
This is a "Facebook" styled Card. The header is created from a Thumbnail List item, the content is from a card-body consisting of an image and paragraph text. The footer consists of tabs, icons aligned left, within the card-footer.
|
|
</p>
|
|
<p>
|
|
<a href="#" class="subdued">1 Like</a>
|
|
<a href="#" class="subdued">5 Comments</a>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="item tabs tabs-secondary tabs-icon-left">
|
|
<a class="tab-item" href="#">
|
|
<i class="icon ion-thumbsup"></i>
|
|
Like
|
|
</a>
|
|
<a class="tab-item" href="#">
|
|
<i class="icon ion-chatbox"></i>
|
|
Comment
|
|
</a>
|
|
<a class="tab-item" href="#">
|
|
<i class="icon ion-share"></i>
|
|
Share
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
</ion-content>
|
|
|
|
</ion-pane>
|
|
|
|
</body>
|
|
</html>
|
|
|