jbheinz / Custom-Scoreboard-Examples

Examples of past custom scoreboards to be used for reference
0 stars 0 forks source link

Twitter Feed #5

Open jbheinz opened 9 years ago

jbheinz commented 9 years ago

__CSS__ UPDATE BPE249156.slide SET CustomCSS = '

twitter-left {

    width: 46%;
    line-height: 1.5em;
    font-size: 4em;
    text-align: left; 
    height:12em;
    padding-left:2%;

}

hashtag-left {

    font-size: 1.5em;
    font-weight: bold;

}

.twitter-timeline { float: right; width: 45%; padding-right:2%; max-height: 40EM; white-space: pre-line; overflow: hidden; text-overflow: ellipsis; overflow: hidden; }

.tweets li{ color: #00FF00; } ' WHERE id = 101; __HTML__ UPDATE BPE249156.slide SET CustomHTML = '

```
```
Share you photos using
#AspireGala!

Follow the
Cal Ripken, Sr. Foundation!
@CalRipkenSrFdn
```

' WHERE id = 101; __Javascript__ UPDATE BPE249156.slide SET CustomJS = ' var twitterLoad = function(d,s,id) {
var js,fjs=d.getElementsByTagName(s)[0], p=/^http:/.test(d.location)?'http':'https';
if(!d.getElementById(id)) {
js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js,fjs);
initTwitterWhenLoaded(); } };

var initTwitterWhenLoaded = function() {
if (typeof twttr !== 'undefined') {
twttr.widgets.load(); } else {setTimeout(function() { initTwitterWhenLoaded();},100);}};

var CustomSlideCtrl = ['$scope', 'slideService', function($scope, slideService) { initTwitterWhenLoaded(); $scope.$on("everySecond", everyNTicks(10, function() { if(!$scope.slide.displayData.listPos) { $scope.slide.displayData.listPos = 0; }

        {
            slideService.nextSlide();
         } 
 }));

}]; ' WHERE id = 101;