This code:
\documentclass[tikz,border=1mm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=4]
\foreach \x in {1,...,10}{
\draw (-1+0.1*\x,1+0.1*\x) -- (1+0.1*\x,-.5+0.1*\x);
}
\draw[->,thick, xshift=5mm,yshift=2mm] (0,0) -- (0,0.2) node (r1) [right] {};
\draw[->,thick, xshift=15mm,yshift=5mm] (0,0) -- (0,0.2) node (r1) [right] {};
\end{tikzpicture}
\end{document}
produces the following output:
What do I have to do so that the arrows are orthogonal to the lines and their origin begins exactly at a line?

