-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexplained.html
More file actions
125 lines (102 loc) · 4.22 KB
/
explained.html
File metadata and controls
125 lines (102 loc) · 4.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Indian Express Explained </title>
<link rel="stylesheet" href="./allcss/header.css">
<link rel="stylesheet" href="./style/explained.css">
</head>
<body>
<header id="header"></header>
<div id="container">
<div id="explained_navbar">
<hr class="line">
<div id="task_bar">
<a href="">Home</a>
<span>/Explained</span>
</div>
<div id="category">
<p id="ideas">IDEAS</p>
<p id="economics">ECONOMICS</p>
<a href="">HEALTH</a>
<a href="">POLITICS</a>
<a href="">CULTURE</a>
<a href="">EVERYDAY EXPLAINERS</a>
<a href="">GLOBAL</a>
<a href="">SPORTS</a>
<a href="">SCI-TECH</a>
<a href="">CLIMATE</a>
</div>
<!-- <hr class="line"> -->
</div>
<hr class="line">
<div id="main">
<div id="big_img"></div>
<div id="news"> </div>
</div>
</div>
<footer id="footer"></footer>
</body>
</html>
<script src="./script/explained_catogery.js" type="module"> </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>