A Pen by Taninder

Developer
Size
6,825 Kb
Views
6,072

How do I make an a pen by taninder?

What is a a pen by taninder? How do you make a a pen by taninder? This script and codes were developed by Taninder on 21 January 2023, Saturday.

A Pen by Taninder Previews

A Pen by Taninder - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>A Pen by Taninder</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <center>
<h1 style="font-family:Helvetica; background:#a8e3ff">Planner:</h1><button onclick="calculate('day','totalDays','M')">Math Calculate</button><br>
<div class="bar">
<input type="text" id="day" placeholder="day" size="4" value="1"> /
<input type="text" id="totalDays" placeholder="day" size="4" value="11"></div><br>
<div style="text-align: right;">
<div id="maths" onclick="fullscreen(this.id)" onblur="closefs(this.id)" tabindex="0"></div>
<div id="result"></div><br><br><hr class="hrSub"><br>
</div>
<button onclick="calculate('dayB','totalDaysB','B')">Bio. Calculate</button><br><div class="bar">
<input type="text" id="dayB" placeholder="day" size="4" value="1"> /
<input type="text" id="totalDaysB" placeholder="day" size="4" value="11"></div><br>
<div style="text-align: right;">
<div id="bios" onclick="fullscreen(this.id)" onblur="closefs(this.id)" tabindex="0"></div>
<div id="resultB"></div><br><hr class="hrSub"><br>
</div>
<button onclick="calculate('dayE','totalDaysE','E')">Econ. Calculate</button><br><div class="bar">
<input type="text" id="dayE" placeholder="day" size="4" value="1"> /
<input type="text" id="totalDaysE" placeholder="day" size="4" value="11"></div><br>
<div style="text-align: right;">
<div id="econs" onclick="fullscreen(this.id)" onblur="closefs(this.id)" tabindex="0"></div>
<div id="resultE"></div><br><hr class="hrSub"><br>
</div>
</center> <script src="js/index.js"></script>
</body>
</html>

A Pen by Taninder - Script Codes CSS Codes

input{ width:20px; background:none; border:none; text-align: center; font-size:10pt; font-weight: bold;
}
#maths {
display:inline-block;
width: 40%;
height: 100px;
overflow: auto;
text-align: left;
background:white;
padding-top:20px;
padding-bottom:20px;
font-family: 'Open Sans', sans-serif;
}
#maths label { display: inline-block; padding-left: 2em; text-indent: -1.5em;
}
#result {
display: inline-block;
width:50%;
height: 140px;
overflow: auto;
margin-left:20px;
margin-right:3%;
text-align: left;
font-family: 'Open Sans', sans-serif;
border: 2px dashed #046ca3;
}
#result span { display: inline-block; padding-left: 2em; text-indent: -1.8em;
}
#bios {
display:inline-block;
width: 40%;
height: 100px;
overflow: auto;
text-align: left;
background:white;
padding-top:20px;
padding-bottom:20px;
font-family: 'Open Sans', sans-serif;
}
#bios label { display: inline-block; padding-left: 2em; text-indent: -1.5em;
}
#resultB {
display: inline-block;
width:50%;
height: 140px;
overflow: auto;
margin-left:20px;
text-align: left;
margin-right:3%;
font-family: 'Open Sans', sans-serif;
border: 2px dashed #046ca3;
}
#resultB span { display: inline-block; padding-left: 2em; text-indent: -1.8em;
}
#econs {
display:inline-block;
width: 40%;
height: 100px;
overflow: auto;
text-align: left;
background:white;
padding-top:20px;
padding-bottom:20px;
font-family: 'Open Sans', sans-serif;
}
#econs label { display: inline-block; padding-left: 2em; text-indent: -1.5em;
}
#resultE {
display: inline-block;
width:50%;
height: 140px;
overflow: auto;
margin-left:20px;
margin-right:3%;
text-align: left;
font-family: 'Open Sans', sans-serif;
border: 2px dashed #046ca3;
}
#resultE span { display: inline-block; padding-left: 2em; text-indent: -1.8em;
}
.bar{ width:75px; border-radius: 25px; background:#a1c3e2;
}
body
{ background:#e2f1ff;
}
.hrIn{ height: 12px; border: 0; box-shadow: inset 0 12px 12px -12px #93ceff;
}
.hrSub
{ border: 2px solid #84c3ff;
}
button {	-moz-box-shadow:inset 0px -4px 7px 0px #96deff;	-webkit-box-shadow:inset 0px -4px 7px 0px #96deff;	box-shadow:inset 0px -4px 7px 0px #96deff;	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #2dabf9), color-stop(1, #0688fa));	background:-moz-linear-gradient(top, #2dabf9 5%, #0688fa 100%);	background:-webkit-linear-gradient(top, #2dabf9 5%, #0688fa 100%);	background:-o-linear-gradient(top, #2dabf9 5%, #0688fa 100%);	background:-ms-linear-gradient(top, #2dabf9 5%, #0688fa 100%);	background:linear-gradient(to bottom, #2dabf9 5%, #0688fa 100%);	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#2dabf9', endColorstr='#0688fa',GradientType=0);	background-color:#2dabf9;	-moz-border-radius:20px;	-webkit-border-radius:20px;	border-radius:20px;	border:2px solid #97d2fc;	display:inline-block;	cursor:pointer;	color:#ffffff;	font-family:Arial;	font-size:18px;	font-weight:bold;	font-style:italic;	padding:6px 14px;	text-decoration:none;
}
button:hover {	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0688fa), color-stop(1, #2dabf9));	background:-moz-linear-gradient(top, #0688fa 5%, #2dabf9 100%);	background:-webkit-linear-gradient(top, #0688fa 5%, #2dabf9 100%);	background:-o-linear-gradient(top, #0688fa 5%, #2dabf9 100%);	background:-ms-linear-gradient(top, #0688fa 5%, #2dabf9 100%);	background:linear-gradient(to bottom, #0688fa 5%, #2dabf9 100%);	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0688fa', endColorstr='#2dabf9',GradientType=0);	background-color:#0688fa;
}

A Pen by Taninder - Script Codes JS Codes

var math = ["1.1 Functions","1.2 Exploring Absolute Value","1.3 Properties of Graphs of Functions","1.4 Sketching Graphs of Functions","1.5 Inverse Relations","1.6 Piecewise Functions","1.7 Exploring Operations with Functions","3.1 Exploring Polynomial Functions","3.2 Characteristics of Polynomial Functions","3.3 Characteristics of Polynomial Functions in Factored Form","3.4 Transformations of Cubic and Quartic Functions","3.5 Dividing Polynomials","3.6 Factoring Polynomials","3.7 Factoring a Sum or Difference of Cubes","4.1 Solving Polynomial Equations","4.2 Solving Linear Inequalities","4.3 Solving Polynomial Inequalities","4.4 Rates of Change in Polynomial Functions","5.1 Graphs of Reciprocal Functions","5.2 Exploring Quotients of Polynomial Functions","5.3 Graphs of Rational Functions of the Form Form f (x) = ax + b cx + d","5.4 Solving Rational Equations","5.5 Solving Rational Inequalities","5.6 Rates of Change in Rational Functions","6.1 Radian Measure","6.2 Radian Measure and Angles on the Cartesian Plane","6.3 Exploring Graphs of the Primary Trigonometric Functions","6.4 Transformation of Trigonometric Functions","6.5 Exploring Graphs of the Reciprocal Trigonometric Functions","6.6 Modelling with Trigonometric Functions","6.7 Rates of Change in Trigonometric Functions","7.1 Exploring Equivalent Trigonometric Functions","7.2 Compound Angle Formulas","7.3 Double Angle Formulas","7.4 Proving Trigonometric Identities","7.5 Solving Linear Trigonometric Equations","7.6 Solving Quadratic Trigonometric Equations","8.1 Exploring the Logarithmic Functions","8.2 Transformations of Logarithmic Functions","8.3 Evaluating Logarithms","8.4 Laws of Logarithms","8.5 Solving Exponential Equations","8.6 Solving Logarithmic Equations","8.7 Solving Problems with Exponential and Logarithmic Functions","8.8 Rates of Change in Exponential and Logarithmic Functions"];
var mathCheck = ["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"];
var bio = ["Important Terms Biochemistry","Functional Groups","Structure & Shape of Molecules","Important Biological Molecules","Carbohydrates","Lipids","Proteins","Nucleic Acids","Summary of Macromolecules","biochemical reactions","cell membrane","transport note","summary of transport","metabolic processes important terms and concepts","aerobic respiration","cellular respiration","anaerobic respiration","photosynthesis ","noncyclic and cyclic photophosphorylation ","fixing carbon dioxide: the light-independent reactions ","chemical composition and structure of DNA ","watson and crick’s three-dimensional model for DNA","DNA of eukaryotic cells","DNA replication","three proposed models for DNA replication","Meselson and Stahl determine the mechanism of DNA replication","the molecular events in DNA replication","overview of DNA replication","initiation ","elongation ","lagging strand synthesis","termination","correcting errors during DNA replication","comparing DNA Replication in eukaryotes and prokaryotes","finding a messenger between DNA and proteins","gene expression","transcription and translation","transcription: synthesizing RNA from DNA","the molecular events of transcription","initiation","elongation","termination","translation: synthesizing proteins from mRNA","transfer RNA","ribosomes ","initiation","elongation","termination","DNA mutations and effects of mutagens","single-gene mutations","chromosome mutations","physical mutagens","chemical mutagens","DNA repair","regulation of gene expression in prokaryotes","regulation of gene expression in eukaryotes","pre-transcriptional and transcriptional control","post-transcriptional and translational control","post-translational control","homeostasis","feedback systems ","negative feedback systems","positive feedback systems ","structures and processes of the nervous system","an overview of the nervous system","cells of the nervous system ","structure of the neuron system ","classifying a neuron","reflex arc","the electrical nature of nerves","resting membrane potential","sodium-potassium pump","action potential","myelinated nerve impulse","signal transmission across a synapse","neurotransmitters ","the spinal cord","the brain","the hindbrain: coordination and homeostasis key terms","the midbrain: processing sensory input the key terms","the forebrain: thought, learning, and emotion key terms","cerebrospinal fluid","the structure and function of cerebrum","the cerebral cortex","peripheral nervous system: the somatic system","the autonomic system","the sympathetic nervous system","the parasympathetic nervous system","the endocrine glands ","hormone action on target cells","steroid hormones and water-soluble hormones ","regulating the regulators","working together to maintain homeostasis ","the pituitary gland ","human growth hormone","the thyroid gland: a metabolic thermostat ","the parathyroid glands and calcium homeostasis","hormonal regulation of the stress response and blood sugar","the adrenal medulla: regulating the short-term stress response","cortisol","aldosterone","the hormones of the pancreas","the effects of glucose imbalance","causes of diabetes ","toward a cure for diabetes ","excretory system","functions of the excretory system","the organs of the excretory system","the kidneys","how urine forms","glomerular filtration filters blood","tubular reabsorption: recovery of substances in the proximal tubule focussing on the loop of henle in the proximal tubule","tubular reabsorption and secretion in the distal tubule","reabsorption from the collecting duct ","reabsorption of water","reabsorption of salts","maintaining pH balance","acid–base buffer system ","respiratory centre ","the kidneys","releasing hormones","urinary tract infection ","kidney stones","renal Insufficiency ","hemodialysis and peritoneal dialysis ","the kidney–coronary connection","evaluating the kidney function ","urinalysis ","blood tests"];
var bioCheck =["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"];
var econ = ["What is the economic problem?","What are 3 economic systems?","What are the factors of production? What are the payments associated with each?","How do microeconomics and macroeconomics differ?","How do positive and normative statements differ?","What is opportunity cost?","What is a PPC and how is it used to calculate opportunity cost?","What is the budget line? How is a graph with a budget line interpreted?","What are marginal cost and marginal benefit? (Law of Diminishing Marginal Utility)","What is demand? Quantity demanded?","Why is the demand curve downward sloping?","What are the determinants of demand and how do these affect demand?","What is supply? Quantity supplied?","Why is the supply curve upward sloping?","What is price elasticity of demand? What are the different types of price elasticity of demand?","What determines the price elasticity of demand for a good or service?","How do you calculate the coefficient of price elasticity of demand?","What is economic growth? What stimulates economic growth?","What is GDP? Describe the pros and cons of GDP as a measurement.","How is GDP calculated using the expenditure approach? Income approach? What are the components of each?","What are exports? Imports? Net exports?","What is the difference between nominal GDP and real GDP?","What is the GDP deflator","What is a hidden economy? Does it hurt or help a country’s GDP? Why?","What is the CPI? How can the CPI be used to calculate the rate of inflation?","How can knowledge of the CPI be used to compare prices from different years?","What is the rule of 70? How is it applied to a calculation?","How does inflation affect real income? How does it affect a bank’s interest rate?","What are the different types of unemployment? What is the meaning of full-employment?","How is the unemployment rate calculated?","What is meant by the term working age population? Labour force?","What is meant by the terms aggregate demand, aggregate supply, and aggregate expenditures?","What is the marginal propensity to consume? The marginal propensity to expend?","What is the multiplier? Why is it significant? How is it calculated and how is it used in a calculation?","How does a recession affect aggregate demand and aggregate supply?","Explain how taxes, wages, and exchange rates affect AD or AS.","The Business Cycle","What is an inflationary gap? A recessionary gap? Explain how these gaps can be closed so that the economy returns to equilibrium.","Explain the different functions of money.","Explain the different characteristics of money?","Calculate how the banking system creates money. What roles do excess reserves and the money multiplier play?","What is the money supply?","What is monetary policy? (expansionary & contractionary)","What is fiscal policy?"];
var econCheck = ["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"];
var i;
for (i=0; i < math.length; i++){
var newCheckbox = document.createElement("input");
newCheckbox.type = "checkbox";
newCheckbox.id = "chapter";
newCheckbox.setAttribute('display','inline-block');
newCheckbox.name = i;
newCheckbox.setAttribute('onclick',("checker("+i+",1);"));
var label = document.createElement('label');
label.appendChild(newCheckbox);
label.appendChild(document.createTextNode(math[i]));
label.htmlFor = "chapter";
document.getElementById("maths").appendChild(label);
var lineDivider = document.createElement("hr");
lineDivider.setAttribute("class","hrIn");
document.getElementById("maths").appendChild(lineDivider);
}
for (i=0; i < bio.length; i++){
var newCheckbox = document.createElement("input");
newCheckbox.type = "checkbox";
newCheckbox.id = "chapter";
newCheckbox.name = i;
newCheckbox.setAttribute('onclick',("checker("+i+",2);"));
var label = document.createElement('label');
label.appendChild(newCheckbox);
label.appendChild(document.createTextNode(bio[i]));
label.htmlFor = "chapter";
document.getElementById("bios").appendChild(label);
var lineDivider = document.createElement("hr");
lineDivider.setAttribute("class","hrIn");
document.getElementById("bios").appendChild(lineDivider);
}
for (i=0; i < econ.length; i++){
var newCheckbox = document.createElement("input");
newCheckbox.type = "checkbox";
newCheckbox.id = "chapter";
newCheckbox.name = i;
newCheckbox.setAttribute('onclick',("checker("+i+",3);"));
var label = document.createElement('label');
label.appendChild(newCheckbox);
label.appendChild(document.createTextNode(econ[i]));
label.htmlFor = "chapter";
document.getElementById("econs").appendChild(label);
var lineDivider = document.createElement("hr");
lineDivider.setAttribute("class","hrIn");
document.getElementById("econs").appendChild(lineDivider);
}
function calculate(dayC,dayT,topics){ var counterA=0; var dayToday = document.getElementById(dayC).value; var dayTotal = document.getElementById(dayT).value; var daysLeft = (Number(dayTotal)+1)-dayToday; if (topics == "M") { counterA=0; var j; for (j=0; j < mathCheck.length; j++) { if(mathCheck[j]=="0"){ counterA+=1; } } var counterB = (daysLeft-1); var topicPerDay = (Math.round((counterA/daysLeft)* 100) / 100); document.getElementById("result").innerHTML = "<p style='text-align: center;'> Days Remaining: "+daysLeft+"<br>"+topicPerDay+" Topics per day:</p><br><br>&nbsp&nbspDay "+((daysLeft)-counterB)+":<br>"; var k; counterA=0; for (k=0; k < mathCheck.length; k++) { if(mathCheck[k]=="0"){ document.getElementById("result").innerHTML+="<span>&nbsp&nbsp&nbsp&nbsp• "+math[k]+"</span><br>"; counterA+=1; } if ((counterA == Math.ceil(topicPerDay))&&(k != (mathCheck.length-1))){ counterA = 0; counterB -= 1; document.getElementById("result").innerHTML+="<br><br>&nbsp&nbspDay "+((daysLeft)-counterB)+": <br>" } } } if (topics == "B") { counterA=0; var j; for (j=0; j < bioCheck.length; j++) { if(bioCheck[j]=="0"){ counterA+=1; } } var counterB = (daysLeft-1); var topicPerDay = (Math.round((counterA/daysLeft)* 100) / 100); document.getElementById("resultB").innerHTML = "<p style='text-align: center;'> Days Remaining: "+daysLeft+"<br>"+topicPerDay+" Topics per day:</p><br><br>&nbsp&nbspDay "+((daysLeft)-counterB)+": <br>"; var k; counterA=0; for (k=0; k < bioCheck.length; k++) { if(bioCheck[k]=="0"){ document.getElementById("resultB").innerHTML+="<span>&nbsp&nbsp&nbsp&nbsp• "+bio[k]+"</span><br>"; counterA+=1; } if ((counterA == Math.ceil(topicPerDay))&&(k != (bioCheck.length-1))){ counterA = 0; counterB -= 1; document.getElementById("resultB").innerHTML+="<br> &nbsp&nbspDay "+((daysLeft)-counterB)+": <br>" } } } if (topics == "E") { counterA=0; var j; for (j=0; j < econCheck.length; j++) { if(econCheck[j]=="0"){ counterA+=1; } } var counterB = (daysLeft-1); var topicPerDay = (Math.round((counterA/daysLeft)* 100) / 100); document.getElementById("resultE").innerHTML = "<p style='text-align: center;'>Days Remaining: "+daysLeft+"<br>"+topicPerDay+" Topics per day:</p><br><br>&nbsp&nbspDay "+((daysLeft)-counterB)+": <br>"; var k; counterA=0; for (k=0; k < econCheck.length; k++) { if(econCheck[k]=="0"){ document.getElementById("resultE").innerHTML+="<span>&nbsp&nbsp&nbsp&nbsp• "+econ[k]+"</span><br>"; counterA+=1; } if ((counterA == Math.ceil(topicPerDay))&&(k != (econCheck.length-1))){ counterA = 0; counterB -= 1; document.getElementById("resultE").innerHTML+="</span><br><br> &nbsp&nbspDay "+((daysLeft)-counterB)+": <br>" } } }
}
function checker(elementName,subject){ if (subject == 1){ if (mathCheck[elementName]=="1") {mathCheck[elementName]="0"} else {mathCheck[elementName]="1"}} if (subject == 2){ if (bioCheck[elementName]=="1") {bioCheck[elementName]="0"} else {bioCheck[elementName]="1"}} if (subject == 3){ if (econCheck[elementName]=="1") {econCheck[elementName]="0"} else {econCheck[elementName]="1"}}
}
function fullscreen(idElem) { var elt=document.getElementById(idElem); elt.style.position = 'absolute'; elt.style.float = 'left'; elt.style.height = "100vh"; elt.style.width = "40%"; elt.style.top = "0"; elt.style.bottom = "0"; elt.style.left = "0"; elt.style.right = "0";
}
function closefs(idElem) { var elt = document.getElementById(idElem); elt.style.position = 'static'; elt.style.height = "100px"; elt.style.width = "40%"; elt.style.float = 'none';
}
A Pen by Taninder - Script Codes
A Pen by Taninder - Script Codes
Home Page Home
Developer Taninder
Username tsj
Uploaded January 21, 2023
Rating 3
Size 6,825 Kb
Views 6,072
Do you need developer help for A Pen by Taninder?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Taninder (tsj) Script Codes
Name
EHelp
Create amazing Facebook ads with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!