Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

HTML & CSS ESPN Sports ticker

D

Deleted member 65

Guest
ESPN sports ticker
https://codepen.io/vyacobucci/pen/QmQEyK

HTML:
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">

<div ng-app="tickerApp">
<div ng-controller="TICKER">
<div class="ticker">
<div class="sport-indicator">MLB</div>
<div class="info-container">
<div class="score-container">
<div class="team">NYY<span class="score-value">3</span></div>
<div class="team">CLE<span class="score-value">5</span></div>
<div class="status-container">
<div class="status-icon arrow-up"></div>
<div class="status-number">3</div>
</div>
<div class="game-info-container">
<div class="game-info-text">OUT</div>
<div class="game-info-out-container">
<div class="circle-empty"></div>
<div class="circle"></div>
</div>
<div class="diamond-containter">
<div class="first diamond-empty"></div>
<div class="second diamond-empty"></div>
<div class="third diamond"></div>
</div>
</div>
</div>
<div class="info">Derek Jeter is expected to return to the Yankees in 2019</div>
</div>
</div>
<div class="logo-container"></div>
<div class="logo"></div>
</div>
</div>
 
Last edited by a moderator:
Nice! Thank you for sharing! Just for future reference, have a look at the rules & guidelines of the section about inserting your code into the Code BBCode.

I have already done this for you in this thread! Also could you please add a little more details about your code? What does it do? How did you make it? How does it work etc
 
Nice! Thank you for sharing! Just for future reference, have a look at the rules & guidelines of the section about inserting your code into the Code BBCode.

I have already done this for you in this thread! Also could you please add a little more details about your code? What does it do? How did you make it? How does it work etc
I didn't make this. I found it online. I want to code something similar to this ESPN ticker.
 

New Threads

Latest posts

Buy us a coffee!

Back
Top Bottom