- https://csswizardry.com/2016/10/improving-perceived-performance-with-multiple-background-images/
- https://developers.google.com/web/fundamentals/performance/user-centric-performance-metrics
- https://css-tricks.com/building-skeleton-screens-css-custom-properties/
- https://www.sitepoint.com/a-designers-guide-to-fast-websites-and-perceived-performance/
- https://www.sitepoint.com/how-to-speed-up-your-ux-with-skeleton-screens/
- https://medium.com/ux-for-india/facilitating-better-interactions-using-skeleton-screens-a034a51120a5
- https://blog.ionicframework.com/improved-perceived-performance-with-skeleton-screens/
- https://codepen.io/oslego/pen/XdvWmd
- https://deliciousbrains.com/performance-best-practices-http2/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Neat CSS3 Fun Things! HOVER TO SEE!!</h1> | |
<div class="box red"></div> | |
<div class="box blue"></div> | |
<div class="box yellow"></div> | |
<div class="box green"></div> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Hide pizzas | |
$('.pizzas').hide(); | |
// Handle click | |
$('#newyork').click(function() { | |
$(this).next('.pizzas').slideToggle(); | |
}); | |
$('#chicago').click(function() { | |
$(this).next('.pizzas').slideToggle(); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function addNumbers() { | |
var firstNumber = document.getElementById("firstNumber").value; | |
var secondNumber = document.getElementById("secondNumber").value; | |
var sum = firstNumber + secondNumber; | |
document.getElementById("sum").innerHTML = sum; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function reverseString(str) { | |
str = str.split(''); | |
str = str.reverse(); | |
str = str.join(''); | |
return str | |
} | |
reverseString("hello"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:focus { | |
outlineL 0; | |
} |
- https://www.learnrazorpages.com/razor-pages/tag-helpers
- https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms/Your_first_HTML_form
- https://msdn.microsoft.com/en-us/library/dd410596(v=VS.98).aspx
- https://docs.microsoft.com/en-us/aspnet/core/mvc/views/razor?view=aspnetcore-2.1#rendering-html
- https://docs.microsoft.com/en-us/aspnet/core/mvc/razor-pages/?view=aspnetcore-2.1&tabs=netcore-cli
- https://stackify.com/asp-net-razor-pages-vs-mvc/
- https://docs.microsoft.com/en-us/aspnet/core/mvc/views/razor?view=aspnetcore-2.1
- https://html.spec.whatwg.org/multipage/interaction.html#focus
- https://www.w3.org/TR/2016/REC-html51-20161101/editing.html#can-be-focused
- https://www.oreilly.com/ideas/proposing-css-input-modality
- https://www.sitepoint.com/learning-to-focus/
- https://egghead.io/lessons/css-focus-management-using-css-html-and-javascript
- https://youtu.be/ilj2P5-5CjI?list=PLNYkxOF6rcICWx0C9LVWWVqvHlYJyqw7g
- https://drafts.csswg.org/selectors-4/#the-focus-pseudo
- https://www.w3.org/TR/WCAG21/#focus-visible
- http://webaim.org/techniques/keyboard/
- http://www.outlinenone.com/#test2
- https://css-tricks.com/almanac/properties/b/background-blend-mode/
- https://css-tricks.com/basics-css-blend-modes/
- https://css-tricks.com/snippets/css/a-guide-to-flexbox/
- https://getflywheel.com/layout/css-blend-modes/
- https://www.w3.org/Style/CSS20/history.html
- https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout
- https://css-tricks.com/snippets/css/complete-guide-grid/
- https://rachelandrew.co.uk/
- http://jensimmons.com/
- https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_variables
- https://www.gstatic.com/healthricherkp/pdf/color_blindness.pdf
- https://nei.nih.gov/health/color_blindness/facts_about
- https://www.w3.org/TR/2016/WD-low-vision-needs-20160317/#cause-and-progression-of-low-vision
- http://www.colourblindawareness.org/
- https://en.wikipedia.org/wiki/Visual_acuity
- http://www.d.umn.edu/~jfitzake/Lectures/DMED/Vision/Retina/Acuity.html
- www.allaboutvision.com/eye-exam/contrast-sensitivity.htm
- https://www.w3.org/TR/WCAG21/
- http://adrianroselli.com/2015/10/dont-disable-zoom.html
- https://www.deque.com/products/axe-core
OlderNewer