Guest User

Untitled

a guest
Dec 12th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. var country_x = (country1.length > 4)?0:140;
  2.  
  3. top_text.append("text")
  4. .attr("x",country_x)
  5. .attr("y",120)
  6. .attr("font-size","50")
  7. .attr("fill","white")
  8. .style("text-anchor","middle")
  9. .attr("font-family","Franklin Gothic Demi Cond")
  10. .text(country1); // This I need to change the style
  11.  
  12. top_text.append("text")
  13. .attr("x",215)
  14. .attr("y",120)
  15. .attr("font-size","38")
  16. .attr("fill","white")
  17. .attr("font-family","Calibri")
  18. .text("will grow");
Add Comment
Please, Sign In to add comment