-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsports.html
More file actions
139 lines (110 loc) · 4.58 KB
/
Copy pathsports.html
File metadata and controls
139 lines (110 loc) · 4.58 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./allcss/header.css">
<link rel="stylesheet" href="./Sports/sports.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</head>
<body>
<header id="header"></header>
<div id="top">
<div id="sports_navbar">
<div id="task_bar">
<a href="">Home</a>
<span>/sports</span>
</div>
<div id="category">
<a id="sports">SPORTS</a>
<a id="cricket">CRICKET</a>
<a id="tennis">TENNIS</a>
<a id="wwe">WWE</a>
<a id="photo">PHOTO</a>
<a id="podcast">PODCAST</a>
<a id="explained">EXPLAINED</a>
</div>
</div>
<div id="sliding_image">
</div>
<div id="middle">
<div>
<img src="https://images.indianexpress.com/2022/07/Shah-Ganguly.jpg?resize=450,250" alt="">
<h2>
SC hearing on cooling-off period for Ganguly
</h2>
</div>
<div>
<img src="https://images.indianexpress.com/2021/08/dhanalakhsmi.jpg" alt="">
<h2>New national record holder among two athletes who fail dope test</h2>
</div>
<div>
<img src="https://images.indianexpress.com/2022/05/lewandowski-bayern.jpg" alt="">
<h2>Barcelona’s deal for Robert Lewandowski could surpass $50 million</h2>
</div>
</div>
<div id="spt_container"></div>
<footer id="footer"></footer>
</body>
</html>
<script src="./Sports/sports.js"></script>
<script src="./header/header.js" type="module"></script>
<script type="module">
// Header and footer
import {header,footer} from "../header/header.js";
document.getElementById("header").innerHTML=header();
document.getElementById("footer").innerHTML=footer();
var twitter=document.getElementById("fb");
twitter.addEventListener("click",function(){
window.open("https://twitter.com/IndianExpress?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor");
})
var fb=document.getElementById("twitter");
fb.addEventListener("click",function(){
window.open("https://www.facebook.com/indianexpress");
})
var date = new Date().toUTCString();
document.getElementById("date").innerText = date;
window.onscroll = function() {myFunction()};
var navbar = document.getElementById("bottomhead");
function myFunction() {
if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {
navbar.style.position= "fixed";
navbar.style.top="0px";
navbar.style.width="100%";
} else {
navbar.style.position= "static";
}
}
// Search code
const options = {
method: 'GET',
headers: {
'X-RapidAPI-Key': 'c71164da45msh1f47a14d576454dp1f583ajsn5864dad38a50',
'X-RapidAPI-Host': 'free-news.p.rapidapi.com'
}
};
let searchresults=()=>{
var searchbox=document.getElementById("searchbox1").value;
setTimeout(() => {
fetch(`https://free-news.p.rapidapi.com/v1/search?q=${searchbox}&lang=en`, options)
.then(function(response){return response.json()})
.then(function(response){
console.log(response.articles);
let searchdata=[];
searchdata.push(response.articles);
localStorage.setItem("searchdata",JSON.stringify(searchdata));
localStorage.setItem("searchbox",JSON.stringify(searchbox));
window.open("searchresults.html")
})
.catch(err => console.error(err));
}, "1000");
}
document.getElementById("searchres").addEventListener("click",()=>{
searchresults();
})
</script>