appel d'une fonction javascript par un fichier
Bonjour,
Pour celles et ceux qui m'auraient croisés je suis toujours sur le projet que j'ai décris ici dans le forum css.
Tout se passe plutôt bien les navigateurs réagissent tous bien et j'essaye d'alléger un peu le code d'une de mes pages.
Je m'explique, j'ai ce code :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <script type="text/javascript"> <!-- appel du nivoslider -->
$(window).load(function() {
$('#slider').nivoSlider({
effect: 'fold', // Specify sets like: 'fold,fade,sliceDown'
slices: 15, // For slice animations
boxCols: 8, // For box animations
boxRows: 4, // For box animations
animSpeed: 1000, // Slide transition speed
pauseTime: 6000, // How long each slide will show
startSlide: 0, // Set starting Slide (0 index)
directionNav: true, // Next & Prev navigation
controlNav: true, // 1,2,3... navigation
controlNavThumbs: false, // Use thumbnails for Control Nav
pauseOnHover: true, // Stop animation while hovering
manualAdvance: false, // Force manual transitions
prevText: 'Prev', // Prev directionNav text
nextText: 'Next', // Next directionNav text
randomStart: false, // Start on a random slide
beforeChange: function(){}, // Triggers before a slide transition
afterChange: function(){}, // Triggers after a slide transition
slideshowEnd: function(){}, // Triggers after all slides have been shown
lastSlide: function(){}, // Triggers when last slide is shown
afterLoad: function(){}
});
});
</script> |
Et je souhaiterai alléger la page en faisant un truc du genre
Code:
1 2
| <script type="text/javascript">
$(window).load(function() { mafonction(); } |
ou j'aurai juste recopié le code dans un fichier.js
Ca ne changerait rien au rendu final mais rendrait la page bien plus lisible.
Pourriez vous m'indiquer comment je pourrais m'y prendre ( pour apprendre :mouarf:)
D'avance je vous remercie beaucoup