Skip to content

Instantly share code, notes, and snippets.

View Guilherme03's full-sized avatar
🎯
Focusing

Guilherme Duarte Guilherme03

🎯
Focusing
View GitHub Profile
@Guilherme03
Guilherme03 / slick-slider-prev-next.css
Created July 18, 2020 22:33 — forked from omurphy27/slick-slider-prev-next.css
Styling Previous and Next buttons in Slick Slider with Font Awesome Icons
/* Must include Font Awesome (here: https://fortawesome.github.io/Font-Awesome/get-started/) for icons to show up */
.slick-prev,
.slick-next {
font-size: 0;
position: absolute;
bottom: 20px;
color: #d5122f;
border: 0;
background: none;
@Guilherme03
Guilherme03 / image_map.html
Created June 19, 2020 15:50 — forked from marcosbrasil/image_map.html
Mapeamento de Imagens em HTML
<html>
<head>
<script type="text/javascript">
function coordenadas(event)
{
var x=event.clientX;
var y=event.clientY;
var coord = x + "," + y;
return coord;
}