Skip to content

Instantly share code, notes, and snippets.

@A973C
Created August 22, 2013 15:03
Show Gist options
  • Save A973C/6308371 to your computer and use it in GitHub Desktop.
Save A973C/6308371 to your computer and use it in GitHub Desktop.
A CodePen by A973C.
<!-- Hope it help's to someone, my little giveaway. -->
<!-- PHP WIDGET IN THE END OF HTML HOLDER-->
<!DOCTYPE html>
<html>
<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, maximum-scale=1">
<title>Sequence slider give away + BONUS :)</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Ruluko|Sirin+Stencil">
<!-- FIRST OF ALL CHECK THE QUERY IS ENABLED -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
if (typeof jQuery == 'undefined'){
document.write(unescape('%3Cscript src="scripts/jquery-min.js" %3E%3C/script%3E'));
}
</script>
</head>
<body>
<div id="sequence-theme">
<div id="sequence">
<img class="prev" src="http://s.cdpn.io/42883/bt-prev.png" alt="Previous Frame" />
<img class="next" src="http://s.cdpn.io/42883/bt-next.png" alt="Next Frame" />
<ul>
<li class="animate-in">
<h2 class="title">Built using Sequence.js</h2>
<h3 class="subtitle">The Responsive Slider with Advanced CSS3 Transitions</h3>
<img class="model" src="http://s.cdpn.io/42883/model1.png" alt="Model 1" />
</li>
<li>
<h2 class="title">Creative Control</h2>
<h3 class="subtitle">Create unique sliders using CSS3 transitions</h3>
<img class="model" src="http://s.cdpn.io/42883/model2.png" alt="Model 2" />
</li>
<li>
<h2 class="title">Cutting Edge</h2>
<h3 class="subtitle">Supports modern browsers, old browsers (IE7+), touch devices and responsive designs</h3>
<img class="model" src="http://s.cdpn.io/42883/model3.png" alt="Model 3" />
</li>
</ul>
</div>
<!-- Sorru. but little fucked up today & tired, so i cant too long renew that nav items
(THERE WAS SIZED MODEL'S WITH HOVER EFFECT ON THEIR OPACITY)-->
<ul class="nav">
<li><img src="images/tn-model1.png" alt="tnModel 1" /></li>
<li><img src="images/tn-model2.png" alt="tnModel 2" /></li>
<li><img src="images/tn-model3.png" alt="tnModel 3" /></li>
</ul>
soz again, tommorow i'll make that chick's to work.
</div>
</body>
<div align="center">
<h1>but i'll give you something cool,</h1>
<h2>
that makes you want to share ALL things you have found with your friends :) </h2>
<br>
<div id="demo1" data-url="http://codepen.io" data-text="Make your sharing widget with Sharrre (jQuery Plugin)" data-title="SHARE"></div></div>
</html>
<!-- for more docs and example's http://sharrre.com/
PHP file of widget :
--------------------------------------------------------------------------------------------------------------
<?php
header('content-type: application/json');
//Sharrre by Julien Hany
$json = array('url'=>'','count'=>0);
$json['url'] = $_GET['url'];
$url = urlencode($_GET['url']);
$type = urlencode($_GET['type']);
if(filter_var($_GET['url'], FILTER_VALIDATE_URL)){
if($type == 'googlePlus'){ //source http://www.helmutgranda.com/2011/11/01/get-a-url-google-count-via-php/
$content = parse("https://plusone.google.com/u/0/_/+1/fastbutton?url=".$url."&count=true");
$dom = new DOMDocument;
$dom->preserveWhiteSpace = false;
@$dom->loadHTML($content);
$domxpath = new DOMXPath($dom);
$newDom = new DOMDocument;
$newDom->formatOutput = true;
$filtered = $domxpath->query("//div[@id='aggregateCount']");
if (isset($filtered->item(0)->nodeValue))
{
$json['count'] = str_replace('>', '', $filtered->item(0)->nodeValue);
}
}
else if($type == 'stumbleupon'){
$content = parse("http://www.stumbleupon.com/services/1.01/badge.getinfo?url=$url");
$result = json_decode($content);
if (isset($result->result->views))
{
$json['count'] = $result->result->views;
}
}
else if($type == 'pinterest'){
$content = parse("http://api.pinterest.com/v1/urls/count.json?callback=&url=$url");
$result = json_decode(str_replace(array('(', ')'), array('', ''), $content));
if (is_int($result->count))
{
$json['count'] = $result->count;
}
}
}
echo str_replace('\\/','/',json_encode($json));
function parse($encUrl){
$options = array(
CURLOPT_RETURNTRANSFER => true, // return web page
CURLOPT_HEADER => false, // don't return headers
CURLOPT_FOLLOWLOCATION => true, // follow redirects
CURLOPT_ENCODING => "", // handle all encodings
CURLOPT_USERAGENT => 'sharrre', // who am i
CURLOPT_AUTOREFERER => true, // set referer on redirect
CURLOPT_CONNECTTIMEOUT => 5, // timeout on connect
CURLOPT_TIMEOUT => 10, // timeout on response
CURLOPT_MAXREDIRS => 3, // stop after 10 redirects
CURLOPT_SSL_VERIFYHOST => 0,
CURLOPT_SSL_VERIFYPEER => false,
);
$ch = curl_init();
$options[CURLOPT_URL] = $encUrl;
curl_setopt_array($ch, $options);
$content = curl_exec($ch);
$err = curl_errno($ch);
$errmsg = curl_error($ch);
curl_close($ch);
if ($errmsg != '' || $err != '') {
//print_r($errmsg);
}
return $content;
}
?>
----------------------------------------------------------------------------------------------------------
-->

My little give away + bonus

Beatifull slider, with all stylesheets + scss files

/ JS plugins+ little nice js widget to share in socials. All pictures are included + php snippet for sharrre!

###Hope this pen will help someone.

A Pen by A973C on CodePen.

License.

$('#demo1').sharrre({
share: {
googlePlus: true,
facebook: true,
twitter: true
},
buttons: {
googlePlus: {size: 'tall', annotation:'bubble'},
facebook: {layout: 'box_count'},
twitter: {count: 'vertical', via: '_JulienH'}
},
hover: function(api, options){
$(api.element).find('.buttons').show();
},
hide: function(api, options){
$(api.element).find('.buttons').hide();
},
enableTracking: true
});
@import "compass";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* !CSS RESET */
/* prefix declarations */
/* THEME STYLES */
#sequence-theme {
color: white;
font-size: 0.625em;
margin: 0 auto;
position: relative;
width: 100%;
height: 600px;
max-width: 1280px;
-webkit-backface-visibility: hidden;
/* prevent graphical glitches in WebKit browsers when using transitions */
}
#sequence-theme #sequence {
height: 100%;
margin: 0 auto;
position: relative;
overflow: hidden;
max-width: 1280px;
width: 100%;
background-color: #D9D9D9;
background-image: url("../images/bg-sequence.jpg");
background-repeat: no-repeat;
background-position: 50% 100%;
}
#sequence-theme .next,
#sequence-theme .prev {
color: white;
cursor: pointer;
display: none;
font-weight: bold;
padding: 10px 15px;
position: absolute;
top: 50%;
z-index: 1000;
height: 75px;
margin-top: -47.5px;
}
#sequence-theme .pause {
bottom: 0;
cursor: pointer;
position: absolute;
z-index: 1000;
}
#sequence-theme .paused {
opacity: 0.3;
}
#sequence-theme .prev {
left: 3%;
}
#sequence-theme .next {
right: 3%;
}
#sequence-theme .prev img,
#sequence-theme .next img {
height: 100%;
width: auto;
}
#sequence-theme #sequence-preloader {
background: #d9d9d9;
}
#sequence-theme .nav {
bottom: 1%;
display: none;
right: 6%;
position: absolute;
-webkit-transition-duration: 0.5s;
-moz-transition-duration: 0.5s;
-ms-transition-duration: 0.5s;
-o-transition-duration: 0.5s;
transition-duration: 0.5s;
}
#sequence-theme .nav li {
display: inline-block;
height: 140px;
}
#sequence-theme .nav li {
*display: inline;
/* Hack for IE7 and below as they don't support inline-block */
}
#sequence-theme .nav li img {
cursor: pointer;
opacity: 0.5;
-webkit-transition-duration: 1s;
-moz-transition-duration: 1s;
-ms-transition-duration: 1s;
-o-transition-duration: 1s;
transition-duration: 1s;
}
#sequence-theme .nav li img.active {
opacity: 1;
}
#sequence-theme #sequence li {
height: 100%;
position: absolute;
top: -50%;
width: 100%;
}
#sequence-theme #sequence li > * {
position: absolute;
}
#sequence-theme #sequence li img {
height: 96%;
}
#sequence-theme h2 {
color: white;
font-family: 'Sirin Stencil', serif;
font-weight: bold;
text-transform: uppercase;
}
#sequence-theme h3 {
font-family: 'Ruluko', serif;
}
#sequence-theme .next,
#sequence-theme .prev {
position: absolute;
opacity: 0.6;
-webkit-transition-duration: 1s;
-moz-transition-duration: 1s;
-ms-transition-duration: 1s;
-o-transition-duration: 1s;
transition-duration: 1s;
}
#sequence-theme .next:hover,
#sequence-theme .prev:hover {
opacity: 1;
-webkit-transition-duration: 1s;
-moz-transition-duration: 1s;
-ms-transition-duration: 1s;
-o-transition-duration: 1s;
transition-duration: 1s;
}
#sequence-theme .title {
font-size: 3.4em;
left: 65%;
width: 35%;
opacity: 0;
bottom: 1%;
z-index: 50;
}
#sequence-theme .animate-in .title {
left: 50%;
opacity: 1;
-webkit-transition-duration: 0.5s;
-moz-transition-duration: 0.5s;
-ms-transition-duration: 0.5s;
-o-transition-duration: 0.5s;
transition-duration: 0.5s;
}
#sequence-theme .animate-out .title {
left: 35%;
opacity: 0;
-webkit-transition-duration: 0.5s;
-moz-transition-duration: 0.5s;
-ms-transition-duration: 0.5s;
-o-transition-duration: 0.5s;
transition-duration: 0.5s;
}
#sequence-theme .subtitle {
color: black;
font-size: 2em;
left: 35%;
width: 35%;
opacity: 0;
top: 101%;
}
#sequence-theme .animate-in .subtitle {
left: 50%;
opacity: 1;
-webkit-transition-duration: 0.5s;
-moz-transition-duration: 0.5s;
-ms-transition-duration: 0.5s;
-o-transition-duration: 0.5s;
transition-duration: 0.5s;
}
#sequence-theme .animate-out .subtitle {
left: 65%;
opacity: 0;
-webkit-transition-duration: 0.5s;
-moz-transition-duration: 0.5s;
-ms-transition-duration: 0.5s;
-o-transition-duration: 0.5s;
transition-duration: 0.5s;
}
#sequence-theme .model {
left: 30%;
bottom: -48%;
opacity: 0;
position: relative;
height: auto !important;
max-height: 568px !important;
width: 30%;
min-width: 225px;
/*prevents the model from shrinking when the browser is resized*/
max-width: 266px;
}
#sequence-theme .animate-in .model {
left: 15%;
opacity: 1;
-webkit-transition-duration: 1s;
-moz-transition-duration: 1s;
-ms-transition-duration: 1s;
-o-transition-duration: 1s;
transition-duration: 1s;
}
#sequence-theme .animate-out .model {
left: 15%;
opacity: 0;
-webkit-transition-duration: 0.5s;
-moz-transition-duration: 0.5s;
-ms-transition-duration: 0.5s;
-o-transition-duration: 0.5s;
transition-duration: 0.5s;
}
@media only screen and (min-width: 1224px) {
/*only display the hover effect on desktops/laptops*/
#sequence-theme .nav li img:hover {
opacity: 1;
-webkit-transition-duration: 1s;
-moz-transition-duration: 1s;
-ms-transition-duration: 1s;
-o-transition-duration: 1s;
transition-duration: 1s;
}
}
@media only screen and (min-width: 992px) {
#sequence-theme .title {
width: 42%;
}
}
@media only screen and (max-width: 838px) {
#sequence-theme {
height: 550px;
}
#sequence-theme .model {
max-height: 530px !important;
width: auto;
}
}
@media only screen and (max-width: 768px) {
#sequence-theme {
height: 500px;
}
#sequence-theme .title {
font-size: 2.8em;
}
#sequence-theme .subtitle {
font-size: 1.6em;
}
#sequence-theme .next,
#sequence-theme .prev {
height: 60px;
margin-top: -40px;
}
#sequence-theme .model {
max-height: 480px !important;
width: auto;
}
}
@media only screen and (max-width: 568px) {
#sequence-theme .model {
left: 50%;
min-width: 40%;
/*prevents the model from shrinking when the browser is resized*/
width: 40%;
}
#sequence-theme .animate-in .model {
left: 50%;
margin-left: -20%;
}
#sequence-theme .animate-out .model {
left: 50%;
margin-left: -20%;
}
#sequence-theme .title {
background: #a1a1a1;
background: rgba(0, 0, 0, 0.3);
bottom: 0;
left: 100%;
padding: 4%;
bottom: -50%;
width: 100%;
z-index: 10;
}
#sequence-theme .animate-in .title {
left: 0%;
}
#sequence-theme .animate-out .title {
left: -100%;
}
#sequence-theme .subtitle {
visibility: hidden;
}
#sequence-theme .nav {
bottom: 40px;
}
#sequence-theme .nav li img {
height: 100px;
}
}
@media only screen and (max-width: 518px) {
#sequence-theme {
height: 450px;
}
}
@media only screen and (max-width: 468px) {
#sequence-theme {
height: 415px;
}
#sequence-theme .nav {
opacity: 0;
visibility: hidden;
}
}
@media only screen and (max-width: 418px) {
#sequence-theme {
height: 375px;
}
}
@media only screen and (max-width: 368px) {
#sequence-theme {
height: 325px;
}
#sequence-theme .title {
font-size: 2.2em;
}
}
@media only screen and (max-width: 320px) and (orientation: portrait) {
/*iphone portrait*/
#sequence-theme {
height: 320px;
}
#sequence-theme .model {
min-width: 45%;
width: 45%;
}
#sequence-theme .animate-in .model {
margin-left: -22.5%;
}
#sequence-theme .animate-out .model {
margin-left: -22.5%;
}
}
@media only screen and (min-width: 321px) and (max-width: 480px) and (orientation: landscape) {
#sequence-theme {
height: 260px;
}
#sequence-theme .model {
min-width: 24%;
width: 24%;
}
#sequence-theme .animate-in .model {
left: 17.5%;
margin-left: 0;
}
#sequence-theme .animate-out .model {
left: 17.5%;
margin-left: 0;
}
#sequence-theme .nav {
right: 17.5%;
}
}
.sharrre .box{
float:left;
}
.sharrre .count {
color:#444444;
display:block;
font-size:17px;
line-height:34px;
height:34px;
padding:4px 0;
position:relative;
text-align:center;
text-decoration:none;
width:50px;
background-color:#eee;
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
}
.sharrre .share {
color:#FFFFFF;
display:block;
font-size:11px;
height:16px;
line-height:16px;
margin-top:3px;
padding:0;
text-align:center;
text-decoration:none;
width:50px;
background-color:#9CCE39;
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
}
.sharrre .buttons {
display:none;
position:absolute;
margin-left:50px;
z-index:10;
background-color:#fff;
}
.sharrre .button {
float:left;
max-width:50px;
margin-left:10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment