This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data segment | |
; A C E G N R J K I L P | |
nums db 65, 67, 69, 71, 78, 82, 74, 75, 73, 76, 80 | |
count equ 11 | |
data ends | |
code segment | |
assume ds:data, cs:code | |
startup: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function () { | |
var flag = false; | |
var scroll; | |
$(window).scroll(function () { | |
scroll = $(window).scrollTop(); | |
if (scroll > 90) { | |
if (!flag) { | |
$('header').css({ "height": "87px" }); | |
flag = true; |
NewerOlder