-
Notifications
You must be signed in to change notification settings - Fork 0
/
tested2.html
executable file
·128 lines (96 loc) · 4.73 KB
/
tested2.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<html><head>
<script src="https://widget.cloudpayments.ru/bundles/cloudpayments"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="shortcut icon" type=image/png href=https://www.dropbox.com/s/b11tk5sgsnhfoj1/SMS_Key.png><meta charset=UTF-8><meta name=viewport content="width=1280px, maximum-scale=1.0"></head>
<center>
<h1>The weather is:</h1>
<p id="temp">температура в кельвинах: --- </p>
<p>_______</p>
<p id="sign">НАЖАТЬ для получения инфы минус/плюс</p>
<h2 id="runme">CLICK me please!</h2>Celsium
<p>_______</p>
<h2 id="cond"></h2>
<form id="form" onsubmit="return false;">
<input style="width:100px;" type="number" id="userInput" />
<input value="Оплатить CloudPayments" style="width:150px;" type="submit" onclick="pay()" />
</form>
<script>
$('#userInput').change(function() {
$('#mysum').val($(this).val());
});
</script>
<form method="POST" action="https://money.yandex.ru/quickpay/confirm.xml">
<input type="hidden" name="receiver" value="41001848558561">
<input style="width: 400px;" type="text" name="formcomment" value="Проект «Железный человек»: реактор холодного ядерного синтеза" disabled>
<input type="hidden" name="short-dest" value="Проект «Железный человек»: реактор холодного ядерного синтеза">
<input type="hidden" name="label" value="$order_id">
<input type="hidden" name="quickpay-form" value="donate">
<input type="hidden" name="targets" value="транзакция {order_id}">
<input id="mysum" type="hidden" name="sum" value="4568.25" data-type="number">
<input type="hidden" name="comment" value="Хотелось бы дистанционного управления.">
<label><input type="radio" name="paymentType" value="PC">Яндекс.Деньгами</label>
<label><input type="radio" name="paymentType" value="AC">Банковской картой</label>
<input type="submit" value="Перевести Яндекс.Кнопкой">
</form>
<script>
this.pay = function () {
var widget = new cp.CloudPayments();
var summ = parseInt(document.getElementById("userInput").value);
widget.charge({ // options
publicId: 'test_api_00000000000000000000001', //id из личного кабинета
description: 'Пример оплаты (деньги сниматься не будут)', //назначение
amount: summ, //сумма
currency: 'RUB', //валюта
invoiceId: '1234567', //номер заказа (необязательно)
accountId: '[email protected]', //идентификатор плательщика (необязательно)
data: {
myProp: 'myProp value' //произвольный набор параметров
}
},
function (options) { // success
//действие при успешной оплате
},
function (reason, options) { // fail
//действие при неуспешной оплате
});
};
</script>
<script type="text/javascript">
document.getElementById("runme").onclick = function() {Weather()};
document.getElementById("sign").onclick = function() {PLusMinus()};
function Weather(){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var myObj = JSON.parse(this.responseText);
document.getElementById("runme").innerHTML = myObj.list[2].main.temp;
document.getElementById("cond").innerHTML = myObj.list[2].weather[0].description;
}
};
var requestURL = 'http://api.openweathermap.org/data/2.5/forecast?id=5601538&units=metric&APPID=92725011178eede9159f7f8defaf6427';
xmlhttp.open("GET", requestURL);
xmlhttp.send();
}
function PLusMinus(){
var xmlhttp2 = new XMLHttpRequest();
xmlhttp2.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var myObj2 = JSON.parse(this.responseText);
var pm;
if (myObj2.list[2].main.temp < 273){
document.getElementById("sign").innerHTML = "plus";
document.getElementById("temp").innerHTML = myObj2.list[2].main.temp;
} else {
document.getElementById("sign").innerHTML = "minus";
document.getElementById("temp").innerHTML = myObj2.list[2].main.temp;
}
}
};
var requestURL2 = 'http://api.openweathermap.org/data/2.5/forecast?id=5601538&APPID=92725011178eede9159f7f8defaf6427';
xmlhttp2.open("GET", requestURL2);
xmlhttp2.send();
}
</script>
</center>
</body>
</html>