From 7a73162607544204032aa66cce755daf21edebda Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 24 May 2022 11:18:46 -0500 Subject: Graduate Signed-off-by: Matt Strapp --- OLD/csci4131/hw3/strap012/MyForm.html | 55 ------- OLD/csci4131/hw3/strap012/Untitled.png | Bin 91 -> 0 bytes OLD/csci4131/hw3/strap012/carlson.jpg | Bin 39588 -> 0 bytes OLD/csci4131/hw3/strap012/contacts.js | 221 --------------------------- OLD/csci4131/hw3/strap012/gophers-mascot.png | Bin 82836 -> 0 bytes OLD/csci4131/hw3/strap012/johnston.jpg | Bin 47355 -> 0 bytes OLD/csci4131/hw3/strap012/morrill.jpg | Bin 48670 -> 0 bytes OLD/csci4131/hw3/strap012/myContacts.html | 113 -------------- OLD/csci4131/hw3/strap012/myWidgets.html | 148 ------------------ OLD/csci4131/hw3/strap012/passwordcheck.css | 60 -------- OLD/csci4131/hw3/strap012/passwordcheck.js | 42 ----- OLD/csci4131/hw3/strap012/shepherd.jpg | Bin 675244 -> 0 bytes OLD/csci4131/hw3/strap012/snyder.jpg | Bin 45356 -> 0 bytes OLD/csci4131/hw3/strap012/style.css | 118 -------------- OLD/csci4131/hw3/strap012/walter.jpg | Bin 150800 -> 0 bytes 15 files changed, 757 deletions(-) delete mode 100644 OLD/csci4131/hw3/strap012/MyForm.html delete mode 100644 OLD/csci4131/hw3/strap012/Untitled.png delete mode 100644 OLD/csci4131/hw3/strap012/carlson.jpg delete mode 100644 OLD/csci4131/hw3/strap012/contacts.js delete mode 100644 OLD/csci4131/hw3/strap012/gophers-mascot.png delete mode 100644 OLD/csci4131/hw3/strap012/johnston.jpg delete mode 100644 OLD/csci4131/hw3/strap012/morrill.jpg delete mode 100644 OLD/csci4131/hw3/strap012/myContacts.html delete mode 100644 OLD/csci4131/hw3/strap012/myWidgets.html delete mode 100644 OLD/csci4131/hw3/strap012/passwordcheck.css delete mode 100644 OLD/csci4131/hw3/strap012/passwordcheck.js delete mode 100644 OLD/csci4131/hw3/strap012/shepherd.jpg delete mode 100644 OLD/csci4131/hw3/strap012/snyder.jpg delete mode 100644 OLD/csci4131/hw3/strap012/style.css delete mode 100644 OLD/csci4131/hw3/strap012/walter.jpg (limited to 'OLD/csci4131/hw3/strap012') diff --git a/OLD/csci4131/hw3/strap012/MyForm.html b/OLD/csci4131/hw3/strap012/MyForm.html deleted file mode 100644 index 4e2760d..0000000 --- a/OLD/csci4131/hw3/strap012/MyForm.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - There is no form - - - - -
-

Simple Form

-
-

- - - - - - -

-

- - -

-
-
- - diff --git a/OLD/csci4131/hw3/strap012/Untitled.png b/OLD/csci4131/hw3/strap012/Untitled.png deleted file mode 100644 index 92a4aa1..0000000 Binary files a/OLD/csci4131/hw3/strap012/Untitled.png and /dev/null differ diff --git a/OLD/csci4131/hw3/strap012/carlson.jpg b/OLD/csci4131/hw3/strap012/carlson.jpg deleted file mode 100644 index d82c37c..0000000 Binary files a/OLD/csci4131/hw3/strap012/carlson.jpg and /dev/null differ diff --git a/OLD/csci4131/hw3/strap012/contacts.js b/OLD/csci4131/hw3/strap012/contacts.js deleted file mode 100644 index 8518ef6..0000000 --- a/OLD/csci4131/hw3/strap012/contacts.js +++ /dev/null @@ -1,221 +0,0 @@ -function change(small, row) { - document.getElementsByClassName("smol")[row].src = small; -} -function lucky() { - var image = ["carlson.jpg", "johnston.jpg", "morrill.jpg", "shepherd.jpg", "snyder.jpg", "walter.jpg"]; - document.getElementById("bigboi").src = image[Math.floor(6 * Math.random())]; -} -let isRotating=0; -function dizzy() { - if (!isRotating) { - document.getElementById("bigboi").classList.remove("isntRotating"); - } else { - document.getElementById("bigboi").classList.add("isntRotating"); - } - isRotating^=1; -} -function check(value) { - if(value==="Other") - document.getElementById('others').style.display = 'block'; - else - document.getElementById('others').style.display = 'none'; -} -let map; -var center = { lat: 44.9727, lng: -93.23540000000003 }; -function initMap() { - if (navigator.geolocation) { - navigator.geolocation.getCurrentPosition( - (position) => { - curLoc = { - lat: position.coords.latitude, - lng: position.coords.longitude, - }; - }, - () => { - alert("Geolocation failed. Directions will not work."); - } - ) - } - map = new google.maps.Map(document.getElementById("map"), { - center: center, - zoom: 14, - }); - - var service = new google.maps.places.PlacesService(map); - entries = document.getElementsByClassName("entry"); - locations = []; - for (e=0; e" + - "" + newEntry.getElementsByClassName("name")[0].textContent + "" + "
" + - newEntry.getElementsByClassName("category")[0].textContent + "
" + - newEntry.getElementsByClassName("room")[0].textContent + " " + newEntry.getElementsByClassName("street")[0].textContent + "
" + - newEntry.getElementsByClassName("city")[0].textContent + - "", - }, - }); - marker.addListener('click', function () { - if (!this.infoWindow) { - this.infoWindow = new google.maps.InfoWindow({ - content: this.data.content, - }); - this.infoWindow.open(map, this); - } - }) - } -} -var service; -var otherRadius; -var searchMarker = []; -function searchPlaces() { - var request; - if (document.getElementById("places").value!="Other") { - request = { - location: center, - radius: document.getElementById("distance").value, - type: document.getElementById("places").value, - }; - service = new google.maps.places.PlacesService(map); - service.nearbySearch(request, (results, status) => { - if (status === google.maps.places.PlacesServiceStatus.OK && results) { - addPointsSearch(results, false); - } - }); - } else { - request = { - location: center, - radius: document.getElementById("distance").value, - query: document.getElementById("others").value, - }; - otherRadius = request.radius; - service = new google.maps.places.PlacesService(map); - service.textSearch(request, (results, status) => { - if (status === google.maps.places.PlacesServiceStatus.OK && results) { - addPointsSearch(results, true); - } - }); - } -} - -function addPointsSearch(locations, isOther) { - deleteMarkers(); - for (x in locations) { - var marker; - if (isOther) { - if (google.maps.geometry.spherical.computeDistanceBetween(locations[x].geometry.location, map.getCenter()) < parseInt(otherRadius)) { - marker = new google.maps.Marker({ - map, - title: locations[x].name, - position: locations[x].geometry.location, - data: { - content: "" + locations[x].name + "" - + "
" + locations[x].formatted_address - }, - }); - } - } else { - marker = new google.maps.Marker({ - map, - title: locations[x].name, - position: locations[x].geometry.location, - data: { - content: "" + locations[x].name + "" - + "
" + locations[x].vicinity - }, - }); - } - if (marker) { - marker.addListener('click', function () { - if (!this.infoWindow) { - this.infoWindow = new google.maps.InfoWindow({ - content: this.data.content, - }); - this.infoWindow.open(map, this); - } - }) - searchMarker.push(marker); - } - - } -} -function deleteMarkers() { - for (let i = 0; i < searchMarker.length; i++) { - searchMarker[i].setMap(null); - } - searchMarker = []; -} - -var curLoc, directionsService, directionsRenderer; -function directions () { - directionsService = new google.maps.DirectionsService(); - directionsRenderer = new google.maps.DirectionsRenderer(); - document.getElementById("transitList").textContent = ""; - directionsRenderer.setPanel(document.getElementById("transitList")); - directionsRenderer.setMap(map); - var selectedMode = document.getElementById('means').value; - var dest = { - query: document.getElementById("destination").value, - fields: ['name', 'geometry'], - }; - service = new google.maps.places.PlacesService(map); - service.findPlaceFromQuery(dest, function (results, status) { - if (status === google.maps.places.PlacesServiceStatus.OK) { - console.log(results); - doDirections(results[0]); - } - }); -} - -function doDirections(input) { - var means; - var mean = document.getElementsByName('means'); - for (var i = 0; i < mean.length; i++) { - if (mean[i].checked) { - means = mean[i].value; - } - } - - var request = { - origin: curLoc, - destination: input.geometry.location, - // Note that JavaScript allows us to access the constant - // using square brackets and a string value as its - // "property." - travelMode: google.maps.TravelMode[means] - }; - directionsService.route(request, function (result, status) { - if (status == 'OK') { - directionsRenderer.setDirections(result); - } - }); -} - -function initForm() { - map = new google.maps.Map(document.getElementById("formap"), { - center: center, - zoom: 14, - }); -} \ No newline at end of file diff --git a/OLD/csci4131/hw3/strap012/gophers-mascot.png b/OLD/csci4131/hw3/strap012/gophers-mascot.png deleted file mode 100644 index 44e62fa..0000000 Binary files a/OLD/csci4131/hw3/strap012/gophers-mascot.png and /dev/null differ diff --git a/OLD/csci4131/hw3/strap012/johnston.jpg b/OLD/csci4131/hw3/strap012/johnston.jpg deleted file mode 100644 index b8b7f68..0000000 Binary files a/OLD/csci4131/hw3/strap012/johnston.jpg and /dev/null differ diff --git a/OLD/csci4131/hw3/strap012/morrill.jpg b/OLD/csci4131/hw3/strap012/morrill.jpg deleted file mode 100644 index 144d458..0000000 Binary files a/OLD/csci4131/hw3/strap012/morrill.jpg and /dev/null differ diff --git a/OLD/csci4131/hw3/strap012/myContacts.html b/OLD/csci4131/hw3/strap012/myContacts.html deleted file mode 100644 index 6e9293d..0000000 --- a/OLD/csci4131/hw3/strap012/myContacts.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - My Contacts - - - - - - - - -
-

University Contacts

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameCategoryLocationInformationEmailURL
Joan GabelIndustry100 Church Street SE
202 Morrill Hall
Minneapolis MN 55455
President of the University of Minnesota
upres@umn.eduHome Page
Mostafa KavehIndustry117 Pleasant St SE
105 Walter Library
Minneapolis MN 55455
Dean of the College of Science and Engineering
mos@umn.eduHome Page
John ColemanIndustry101 Pleasant Street SE
215 Johnston Hall
Minneapolis MN 55455
Dean of the College of Liberal Arts
coleman@umn.eduHome Page
Valery ForbesIndustry1475 Gortner Avenue
123 Snyder Hall
St. Paul MN 55108
Dean of the College of Biological Sciences
cbsdeans@umn.eduHome Page
Sri ZaheerIndustry321 19th Avenue S
Suite 4-300 Carlson School of Management
Minneapolis MN 55455
Dean of the Carlson School of Management
szaheer@umn.eduHome Page
- - Goldy Gopher
- - -
-
-
-
-
- -
- Directions to
-
- - - - - -
-
-
- - - - - diff --git a/OLD/csci4131/hw3/strap012/myWidgets.html b/OLD/csci4131/hw3/strap012/myWidgets.html deleted file mode 100644 index 79fc15e..0000000 --- a/OLD/csci4131/hw3/strap012/myWidgets.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - My Widgets - - - - - - - - -

- - - - - diff --git a/OLD/csci4131/hw3/strap012/passwordcheck.css b/OLD/csci4131/hw3/strap012/passwordcheck.css deleted file mode 100644 index beceb1c..0000000 --- a/OLD/csci4131/hw3/strap012/passwordcheck.css +++ /dev/null @@ -1,60 +0,0 @@ -#password{ - margin: 0; - padding: 0; - font-family: 'Raleway', sans-serif; - font-size: 15px; - line-height: 1.5; -} -#container { - width: 535px; - background: #ffffff; - padding: 20px; - margin: 90px auto; - border-radius: 5px; - height: 150px; - border: 2px solid gray; -} -#header { - text-align: center; - background-color: #FEFFED; - border-radius: 5px; - margin: -39px -20px 10px -20px; -} -.password{ - padding-top: 10px; -} -#content { - margin-left: 57px; - margin-top: 40px; -} -#register label{ - margin-right:5px; -} -#register input { - padding: 5px 14px; - border: 1px solid #d5d9da; - box-shadow: 0 0 9px #0E34F5 inset; - width: 272px; - font-size: 1em; - height: 25px; -} -#register .short{ - font-weight:bold; - color:#FF0000; - font-size:larger; -} -#register .weak{ - font-weight:bold; - color:orange; - font-size:larger; -} -#register .good{ - font-weight:bold; - color:#2D98F3; - font-size:larger; -} -#register .strong{ - font-weight:bold; - color: limegreen; - font-size:larger; -} diff --git a/OLD/csci4131/hw3/strap012/passwordcheck.js b/OLD/csci4131/hw3/strap012/passwordcheck.js deleted file mode 100644 index 97a2918..0000000 --- a/OLD/csci4131/hw3/strap012/passwordcheck.js +++ /dev/null @@ -1,42 +0,0 @@ -var input; -var result = document.querySelector("span"); -window.addEventListener('DOMContentLoaded', (event) => { - input = document.getElementsByName("password")[0]; -}); -function checkStrength() { - var password = input.value; - var strength = 0; - if (password.length < 6) { - result.removeAttribute("class"); - result.classList.add('short'); - result.innerHTML = "Too short"; - return; - } - if (password.length > 7) { strength += 1;} - // If password contains both lower and uppercase characters, increase strength value. - if (password.match(/([a-z].*[A-Z])|([A-Z].*[a-z])/)) { strength += 1;} - // If it has numbers and characters, increase strength value. - if (password.match(/([a-zA-Z])/) && password.match(/([0-9])/)) { strength += 1;} - // If it has one special character, increase strength value. - if (password.match(/([!,%,&,@,#,$,^,*,?,_,~])/)) { strength += 1;} - // If it has two special characters, increase strength value. - if (password.match(/(.*[!,%,&,@,#,$,^,*,?,_,~].*[!,%,&,@,#,$,^,*,?,_,~])/)) { strength += 1;} - // Calculated strength value, we can return messages - // If value is less than 2 - if (strength < 2) { - result.removeAttribute("class"); - result.classList.add('weak'); - result.innerHTML = 'Weak'; - return; - } else if (strength == 2) { - result.removeAttribute("class"); - result.classList.add('good'); - result.innerHTML = 'Good'; - return; - } else { - result.removeAttribute("class"); - result.classList.add('strong'); - result.innerHTML = 'Strong'; - return; - } -} diff --git a/OLD/csci4131/hw3/strap012/shepherd.jpg b/OLD/csci4131/hw3/strap012/shepherd.jpg deleted file mode 100644 index d1262f8..0000000 Binary files a/OLD/csci4131/hw3/strap012/shepherd.jpg and /dev/null differ diff --git a/OLD/csci4131/hw3/strap012/snyder.jpg b/OLD/csci4131/hw3/strap012/snyder.jpg deleted file mode 100644 index 4531a58..0000000 Binary files a/OLD/csci4131/hw3/strap012/snyder.jpg and /dev/null differ diff --git a/OLD/csci4131/hw3/strap012/style.css b/OLD/csci4131/hw3/strap012/style.css deleted file mode 100644 index 9f28572..0000000 --- a/OLD/csci4131/hw3/strap012/style.css +++ /dev/null @@ -1,118 +0,0 @@ -/* Global */ -body { - background-color:antiquewhite; -} -.linkTable { - border: 1px solid black; - margin-left: 20px; - background-color: white; - border-collapse: separate; -} - -/* Contacts */ -table, th, td { - max-width: 80%; - overflow-x:auto; - border: 1px solid black; - border-collapse: collapse; -} -table { - float:left; - max-width: 60%; -} -tr:nth-child(even) { - background-color:blanchedalmond; -} -tr:nth-child(odd) { - background-color: burlywood; -} -.smol { - max-height: 100%; - width: 6em; -} -.large { - float: right; - max-width: max-content; -} -#bigboi { - width: 25em; - height: 15em; - object-fit: cover; - margin-right: 0; -} -.isRotating { - animation:5s rotate infinite linear; -} -.isntRotating { - animation-play-state: paused; -} -@keyframes rotate{ - 100%{ transform:rotate(1turn) } -} -#map, #formap { - /* clear: both; */ - float: left; - padding-top: 30%; - margin-top: 1em; - margin-left: .2em; - width: 50%; - height: 30%; - max-height: 40%; -} -#formap { - float: right; -} -#transitList { - float: left; - width: 20%; - color: white; -} -.id { - text-align: center; -} -#googlymap { - width: 100%; - overflow: auto; - /* display: flex; */ - /* position: absolute; */ -} - -.inputBox { - float: left; - border: 1px solid black; - width: 25%; -} -.inputBox:nth-child(even) { - background-color:blanchedalmond; -} -.inputBox:nth-child(odd) { - background-color: burlywood; -} -#others { - display:none; -} - -/* Form */ -.Form { - float: left; - background-color: whitesmoke; - padding-left: 5%; - max-width: 25%; -} -/* Widgets */ -.grid { - align-content: center; - display: inline-grid; - grid-template-columns: 40% 40%; - grid-template-rows: 30%; - gap: .1em 10%; -} -.griditem { - padding: 10%; -} -iframe { - border: 0px; -} - - - diff --git a/OLD/csci4131/hw3/strap012/walter.jpg b/OLD/csci4131/hw3/strap012/walter.jpg deleted file mode 100644 index 37d0d56..0000000 Binary files a/OLD/csci4131/hw3/strap012/walter.jpg and /dev/null differ -- cgit v1.2.3