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
$(document).ready(function(){ | |
$('a[href*="#"]').click(function(){ | |
$($(this).attr("href")).addClass("highlight").delay(10000).queue(function(next){ | |
$(this).removeClass('highlight'); | |
next(); | |
}); | |
}); | |
}); |
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
<apex:page docType="html-5.0" showHeader="false" sidebar="false" standardStylesheets="false" applyHtmlTag="false" applyBodyTag="false" > | |
<html dir="ltr" lang="en-US" > | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"></meta> | |
<!-- vfsass is the name of our static resource, replace this with your own file --> | |
<apex:stylesheet value="{!URLFOR($Resource.vfsass, 'css/main.css')}"/> | |
</head> |
NewerOlder