Can I get coloured highlight all around the block? (currently its just highlighted/shadowed only around the bottom edge and the right edge)
\documentclass{beamer}
\mode<presentation>
{
\usetheme{CambridgeUS}
\usecolortheme{default}
\usefonttheme{default}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{caption}[numbered]
}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\title[Your Short Title]{Your Presentation}
\author{AA}
\institute{SS}
\date{Date of Presentation}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{Introduction}
\begin{frame}
bLAH bLAH
\pause
\\
\begin{block}{}
BLAH
\end{block}
\end{frame}
\end{document}


beamer'sblockenvironment. Note that it isn't entirely clear what you want. Drop shadows are inherently directional. So probably you do want a frame like that in the link samcarter pointed to? In that case, look at the answer there usingtcolorbox. – cfr Apr 04 '15 at 02:06