Project

General

Profile

Feature #1815

Add animation on selected verse

Added by Luke Murphey about 7 years ago. Updated about 2 years ago.

Status:
Rejected
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
04/13/2017
Due date:
% Done:

0%


Description

.pulse {
/* margin:100px; /
/
display: block; /
/
width: 22px; /
/
height: 22px; */
border-radius: 50%;
background: #3a87ad;
cursor: pointer;
box-shadow: 0 0 0 rgba(204,169,44, 0.4);
animation: pulse 2s infinite;
}
.pulse:hover {
animation: none;
}

@-webkit-keyframes pulse {
0% {
-webkit-box-shadow: 0 0 0 0 #3a87ad;
}
70% {
-webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
@keyframes pulse {
0% {
-moz-box-shadow: 0 0 0 0 #3a87ad;
box-shadow: 0 0 0 0 #066094;
}
70% {
-moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}

History

#2 Updated by Luke Murphey about 2 years ago

  • Status changed from New to Rejected

Also available in: Atom PDF