-
Notifications
You must be signed in to change notification settings - Fork 0
/
kivy_intro.html
96 lines (85 loc) · 3.57 KB
/
kivy_intro.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<title>Welcome</title>
<head>
<style>
#header {
background-color:black;
color:white;
text-align:center;
padding:5px;
}
#section {
width:100%;
float:left;
padding:10px;
}
#footer {
background-color:black;
color:white;
clear:both;
text-align:center;
padding:5px;
}
div.header {
width: absolute;
height: absolute;
background-color: #fff;
box-shadow: 5px 5px 10px 10px #000;
}
a:link {
color: #CC0000;
}
a:visited {
color: #999999;
}
a:hover {
color: #FF3300;
}
</style>
</head>
<body>
<div id="header" class = "header">
<h1>Introduction to Kivy</h1>
</div>
<div id="section">
<br>
<p> Kivy is an open source Python library for developing applications which make use of innovative user interface which makes it different from other
applications. Kivy runs on many OS like Linux, Windows, OS X, Android and iOS. The most important thing is that you can run same code in all OS which
are listed here. Kivy is written in Python and Cython.</p>According to me Kivy is an application which can help us to create something innovative much easily and something which can be easily appreciated by other
just because of his great user interface. It provide a whole new tool set which you can use easily and if it is used wisely then there is no doubt we can create something which can affect many people and help them.
According to me I would like to work on Ubuntu GNOME because I currently use it and it would be seeing how it works. Kivy is not that hard to use even though it requires coding but if we take a crash course of how to use
Kivy then it will be really productive for you and then you can create something new. There are bunch of projects available at offcial website of kivy
which you can take a look at it. I tried making Pong Game by seeing this
<a href = "http://kivy.org/docs/tutorials/pong.html">Tutorial</a> and I was able to do it successfully. Here image shows of playing pong
game which is made with the help of kivy :<br>
<img src="img/pong.png" height = "400px" width = "500px">
<br>
But then one question arises is what we can do with Kivy.<hr>
Well there are so many things which we can do:
<ol>
<li> Creating application with good User Interface</li>
<li>Usage of Canvas</li>
<li>Making a Demo applicaiton like for showing pictures</li>
<li>Using camera to do something</li>
<li>Creating multi-touch application</li>
<li>3d rendering for creating 3d objects</li>
<a href="http://kivy.org/#gallery"> And many more ...</a>
</ol>
<br>
What I would like to do is I want use Kivy to create wallet kind of application where I can store loads of information and security numbers with high security.
I would like to make that application with good User interface. Overall according to me kivy is an application which can help you to create
application with great user interface.
</div>
<br><br>
<div>
<a href='https://plus.google.com/u/0/+ShashankSharma98'><img alt='Google+' height='35' src='http://i67.tinypic.com/zwhs01.png' title='G+ Profile' width='35'/></a>
<a href='https://github.com/shashank-sharma/'><img alt='Github' height='35' src='http://i67.tinypic.com/hsjr5i.png' title='GitHub Profile' width='35'/></a>
<a href='https://www.facebook.com/shashank.sharma.902'><img alt='Facebook' height='35' src='http://i63.tinypic.com/34xqs8l.jpg' title='Facebook Profile' width='35'/></a>
<a href='http://stackoverflow.com/users/3523510/shashank'><img alt='Stackoverflow' height='35' src='http://i65.tinypic.com/8wckzc.png' title='Stackoverflow Profile' width='35'/></a>
</div>
</div>
<div id="footer" class = "header">
</div>
</body>
</html>