Skip to content
#

head

Here are 79 public repositories matching this topic...

fvsch
fvsch commented Apr 22, 2016

It's probably worth expanding on the script element.

At the very least I'd mention that <script src="..."></script> blocks content rendering while the script loads and executes, and add a non-blocking example with <script async src="..."></script>.

The scope of this project is not to explain every feature of each element that can go in <head>, but for important features it's probably a goo

Danon
Danon commented Dec 18, 2019

Currently, vue-head removes links with duplicated id (so if there was <link id="a"> rendered in source, and link with id: 'a' is rendered in runtime, then the previous one is removed).

I would really love if there was an option to also remove duplicated by hreflang attribute, so if there's a link like so in source:

<html>
<head>
 <link hreflang="en-GB"/>
</head>

and I

SaiVijay24
SaiVijay24 commented Sep 18, 2019

Could someone explain or point out the reference for me to understand the below snippet
# X-Axis pointing to right. drawn in red
x1 = size * (cos(yaw) * cos(roll)) + tdx
y1 = size * (cos(pitch) * sin(roll) + cos(roll) * sin(pitch) * sin(yaw)) + tdy

# Y-Axis | drawn in green
#        v
x2 = size * (-cos(yaw) * sin(roll)) + tdx
y2 = size * (cos(pitch) * cos(roll)
bnomei
bnomei commented Nov 22, 2018

Question:
Lazysizes does not calculate size correctly. Images are all lowrez/pixelated.

Answer:
if using loadjs from this plugin you probably have to use the css and js to load the main css file and lazysizes javascript file. That way you force the browser to wait for the css to be loaded and applied before starting lazysizes.

return 

Improve this page

Add a description, image, and links to the head topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the head topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.