Edit The Code:
See Result »
Try it Yourself - ©
w3big.com
<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>本教程(w3big.com)</title> <link href="https://w3big.com/static/ionic/css/ionic.min.css" rel="stylesheet"> <script src="https://w3big.com/static/ionic/js/ionic.bundle.min.js"></script> <script type="text/javascript"> angular.module('ionicApp', ['ionic']) .controller('MyCtrl', function($scope) { }); </script> <style> body { cursor: url('../static/img/finger.png'), auto; } </style> </head> <body ng-controller="MyCtrl"> <ion-header-bar class="bar-positive"> <h1 class="title">Hello World!</h1> </ion-header-bar> <ion-content> <p>我的第一个 ionic 应用。</p> </ion-content> </body> </html>