Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. window.onload = function(){
  2. blok = document.getElementById('content_text');
  3. parent = blok.parentNode;
  4. blok_height = blok.style.height ? blok.style.height : blok.offsetHeight;
  5.  
  6. if(blok_height > 60){
  7. blok.style.maxHeight = '80px';
  8. link = parent.getElementsByClassName('read-next')[0];
  9. link.style.display = 'inline';
  10.  
  11. link.onclick = function(){
  12.  
  13. if(blok.style.maxHeight){
  14. blok.style.maxHeight = '';
  15. shadow.style.display ='none';
  16. link.innerHTML = 'Скрыть';
  17. } else {
  18. blok.style.maxHeight = '80px';
  19. link.innerHTML = 'Читать далее...';
  20. shadow.style.display ='block';
  21. }
  22. return false;
  23. }
  24. }
  25. }
  26.  
  27. [].forEach.call(
  28. document.querySelectorAll('.block'),
  29. function (el) {
  30. ...
  31. }
  32. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement